des.util.logsys

Package provides static Logger logger

Logger functions:

void logger.error(Args...)( Args args ); void logger.warn (Args...)( Args args ); void logger.info (Args...)( Args args ); void logger.Debug(Args...)( Args args ); void logger.trace(Args...)( Args args );

... logger.info( "format %s %f %d", "str", 3.14, 4 ); logger.Debug( "some info" ); logger.trace( 12 ); ...

If program starts as ./program --log trace output must be like this

[000000.111427128][ INFO]module.function: format str 3.14 4 [000000.111427128]DEBUGmodule.function: some info [000000.111938579]TRACEmodule.function: 12

If log function has string as first argument it tries to format other args to this string, if it failed print converted to string and concatenated args.

If program starts as ./program --log debug output must be like this (without trace)

[000000.111427128][ INFO]module.function: format str 3.14 4

Flag --log used for setting max level of logging output. Default level is error. If log function called with greater level it's skipped. Level has attitudes off < fatal < error < warn < info < debug < trace.

Flag --log can be used with module name ./program --log draw.point:debug. It will set debug level for module draw.point and default to other.

Flag --log-use-min is boolean flag. It forces logging system to skip output from all child modules if their level greater than parent. Default is false.

./program --log trace --log draw:info --log draw.point:trace --log-use-min=true skips all output from logger.trace and logger.Debug from whole draw.point, and doesn't skip from other modules.

./program --log trace --log draw:info --log draw.point:trace allow log_trace and log_debug only from draw.point from module draw. For other modules in draw sets level info

You can compile program with version=logonlyerror for skip all trace, debug, info and warn outputs in logger. It can improve program release speed.

Class logging

Module provides some functional for useful logging classes.

Modules

base
module des.util.logsys.base
Undocumented in source.
logcls
module des.util.logsys.logcls
Undocumented in source.
output
module des.util.logsys.output
Undocumented in source.
rule
module des.util.logsys.rule
Undocumented in source.

Public Imports

des.util.logsys.base
public import des.util.logsys.base;
Undocumented in source.
des.util.logsys.logcls
public import des.util.logsys.logcls;
Undocumented in source.
des.util.logsys.output
public import des.util.logsys.output;
Undocumented in source.

Members

Mixin templates

ClassLogger
mixintemplate ClassLogger()

for simple adding logging to class

Variables

logger
Logger logger;

Examples

module x; import des.util.logger; class A { mixin ClassLogger; void func() { logger.trace( "hello" ); } }

module y; import x; class B : A { }

auto b = new B; ... b.func();

outputs:

[000000.148628473]TRACEx.A.func: hello

If create instance logger

class B : A { this(){ logger = new InstanceLogger(this); } }

outputs:

[000000.148628473]TRACEy.B.func: hello

If create instance logger with instance name

class B : A { this(){ logger = new InstanceLogger(this,"my object"); } }

outputs:

[000000.148628473]TRACE[y.B.[my object].func]: hello

If create instance full logger

class B : A { this(){ logger = new InstanceFullLogger(this); } }

outputs: [000000.148628473]TRACE[y.B.x.A.func]: hello

If create instance full logger with name

class B : A { this(){ logger = new InstanceFullLogger(this,"name"); } }

outputs:

[000000.148628473]TRACE[y.B.name.x.A.func]: hello

Flag --log can get full emitter string y.B.[name].[x.A.func].

./program --log "y.B.one:trace" --log "y.B.two:debug"

Meta