Package winappdbg :: Module textio :: Class DebugLog
[hide private]
[frames] | no frames]

Class DebugLog

source code


Static functions for debug logging.

Instance Methods [hide private]

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __init__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Methods [hide private]
str
log_event(cls, event, text)
Log lines of text associated with a debug event.
source code
Static Methods [hide private]
str
log_text(text)
Log lines of text, inserting a timestamp.
source code
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

log_text(text)
Static Method

source code 

Log lines of text, inserting a timestamp.

Parameters:
  • text (str) - Text to log.
Returns: str
Log line.

log_event(cls, event, text)
Class Method

source code 

Log lines of text associated with a debug event.

Parameters:
  • event (Event) - Event object.
  • text (str) - Text to log.
Returns: str
Log line.