#include <ilserver/ilbarch.h>
#include <ilserver/boolean.h>
#include <ilserver/except.h>
#include <ilserver/sstring.h>
#include <ilserver/ilm.h>
#include <ilserver/iostream.h>
#include <ilserver/fstream.h>
|
ILSIMPORT IlsLogfile & | IlsDebug (IlsLogfile::CategoryId=0, IlsLogfile::MessageId=0, const IlsString &=IlsString::Null, const IlsString &=IlsLogfile::GetMsgPrefix()) |
|
ILSIMPORT IlsLogfile & | IlsError (IlsLogfile::CategoryId=0, IlsLogfile::MessageId=0, const IlsString &=IlsString::Null, const IlsString &=IlsLogfile::GetMsgPrefix()) |
|
ILSIMPORT IlsLogfile & | IlsFatalError (IlsLogfile::CategoryId=0, IlsLogfile::MessageId=0, const IlsString &=IlsString::Null, const IlsString &=IlsLogfile::GetMsgPrefix()) |
|
ILSIMPORT IlsLogfile & | IlsInfo (IlsLogfile::CategoryId=0, IlsLogfile::MessageId=0, const IlsString &=IlsString::Null, const IlsString &=IlsLogfile::GetMsgPrefix()) |
|
ILSIMPORT IlsLogfile & | IlsInternalError (IlsLogfile::CategoryId=0, IlsLogfile::MessageId=0, const IlsString &=IlsString::Null, const IlsString &=IlsLogfile::GetMsgPrefix()) |
|
ILSIMPORT IlsLogfile & | IlsMsg (IlsLogfile::CategoryId=0, IlsLogfile::MessageId=0, const IlsString &=IlsString::Null, const IlsString &=IlsLogfile::GetMsgPrefix()) |
|
ILSIMPORT IlsLogfile & | IlsWarn (IlsLogfile::CategoryId=0, IlsLogfile::MessageId=0, const IlsString &=IlsString::Null, const IlsString &=IlsLogfile::GetMsgPrefix()) |
|
|
ILSIMPORT void | IlsEOM (IlsLogfile &) |
| Appends a new line to the message and sends the message. More...
|
|
|
ILSIMPORT IlsLogfile & | dec (IlsLogfile &) |
| Sets the printing base for integers to decimal. More...
|
|
ILSIMPORT IlsLogfile & | hex (IlsLogfile &) |
| Sets the printing base for integers to hexadecimal. More...
|
|
ILSIMPORT IlsLogfile & | oct (IlsLogfile &) |
| Sets the printing base for integers to octal. More...
|
|
ILSIMPORT IlsLogfile & | restore (IlsLogfile &) |
| Restores the printing base to its old value. More...
|
|
◆ dec()
Sets the printing base for integers to decimal.
An example of its use is shown below:
◆ hex()
Sets the printing base for integers to hexadecimal.
An example of its use is shown below:
◆ IlsDebug()
Debug messages are not normally posted to the user. However, if you want to have them posted, set the log level (via a call to the static member function SetLogLevel()
) to ILS_LOG_DEBUG
.
An example of its use is shown below:
◆ IlsEOM()
Appends a new line to the message and sends the message.
A message that does not end with IlsEOM
is never posted.
◆ IlsError()
An error will not exit after the message has been displayed.
An example of its use is shown below:
◆ IlsFatalError()
A fatal error will call exit
after the message has been displayed.
An example of its use is shown below:
◆ IlsInfo()
An example of its use is shown below:
◆ IlsInternalError()
An internal error will call abort
after the message has been displayed.
An example of its use is shown below:
◆ IlsMsg()
An example of its use is shown below:
◆ IlsWarn()
An example of its use is shown below:
◆ oct()
Sets the printing base for integers to octal.
An example of its use is shown below:
◆ restore()
Restores the printing base to its old value.
Only the last value is saved so calling the restore()
function twice will not work.
An example of its use is shown below:
<<
" for count " << count <<
IlsEOM;
ILSIMPORT IlsLogfile & IlsInfo(IlsLogfile::CategoryId=0, IlsLogfile::MessageId=0, const IlsString &=IlsString::Null, const IlsString &=IlsLogfile::GetMsgPrefix())
ILSIMPORT IlsLogfile & IlsMsg(IlsLogfile::CategoryId=0, IlsLogfile::MessageId=0, const IlsString &=IlsString::Null, const IlsString &=IlsLogfile::GetMsgPrefix())
ILSIMPORT IlsLogfile & IlsInternalError(IlsLogfile::CategoryId=0, IlsLogfile::MessageId=0, const IlsString &=IlsString::Null, const IlsString &=IlsLogfile::GetMsgPrefix())
ILSIMPORT IlsLogfile & hex(IlsLogfile &)
Sets the printing base for integers to hexadecimal.
ILSIMPORT IlsLogfile & IlsError(IlsLogfile::CategoryId=0, IlsLogfile::MessageId=0, const IlsString &=IlsString::Null, const IlsString &=IlsLogfile::GetMsgPrefix())
ILSIMPORT IlsLogfile & IlsFatalError(IlsLogfile::CategoryId=0, IlsLogfile::MessageId=0, const IlsString &=IlsString::Null, const IlsString &=IlsLogfile::GetMsgPrefix())
ILSIMPORT void IlsEOM(IlsLogfile &)
Appends a new line to the message and sends the message.
ILSIMPORT IlsLogfile & IlsWarn(IlsLogfile::CategoryId=0, IlsLogfile::MessageId=0, const IlsString &=IlsString::Null, const IlsString &=IlsLogfile::GetMsgPrefix())
ILSIMPORT IlsLogfile & oct(IlsLogfile &)
Sets the printing base for integers to octal.
ILSIMPORT IlsLogfile & restore(IlsLogfile &)
Restores the printing base to its old value.
ILSIMPORT IlsLogfile & IlsDebug(IlsLogfile::CategoryId=0, IlsLogfile::MessageId=0, const IlsString &=IlsString::Null, const IlsString &=IlsLogfile::GetMsgPrefix())
ILSIMPORT IlsLogfile & dec(IlsLogfile &)
Sets the printing base for integers to decimal.