#include <log.hh>
Public Methods | |
LoggingEvent () | |
Default constructor does nothing. More... | |
LoggingEvent (const QString fqn, Category *cat, const QString lvl, const QString msg) | |
Constructs a LoggingEvent object. More... | |
~LoggingEvent () | |
Destroys the logging event. More... | |
QString | getMessage () const |
Accessor method. More... | |
QString | getFQN () const |
Accessor method. More... | |
Category * | getCategory () const |
Accessor method. More... | |
QString | getCategoryName () const |
Accessor method. More... | |
QString | getLevel () const |
Accessor method. More... | |
QDateTime | getTimestamp () const |
Accessor method. More... | |
Private Attributes | |
Category * | category |
A pointer to the category to log to. More... | |
QString | level |
The level of the logging event. More... | |
QString | message |
The message to log with. More... | |
QString | fqnOfCategoryClass |
The fully-qualified class name of the category. More... | |
QString | categoryName |
The name of the category. More... | |
QDateTime | timeStamp |
The date/time at which logging occurs. More... |
All events to be logged are made into one of these.
|
Default constructor does nothing.
|
|
Constructs a LoggingEvent object.
|
|
Destroys the logging event.
|
|
Accessor method.
|
|
Accessor method.
|
|
Accessor method.
|
|
Accessor method.
|
|
Accessor method.
|
|
Accessor method.
|
|
A pointer to the category to log to.
|
|
The name of the category.
|
|
The fully-qualified class name of the category.
|
|
The level of the logging event.
|
|
The message to log with.
|
|
The date/time at which logging occurs.
|