Ejemplo n.º 1
0
 public CaptionBlock(Logger logger, string caption, char symbol = '#', int maxLength = 80)
 {
     Logger = logger;
     c      = caption;
     s      = symbol;
     m      = maxLength;
     Logger.NewLine();
     Logger.WriteLine(LogHelper.Header("BEGIN: " + c, s, m));
     Logger.NewLine();
     Logger.Indent();
 }
Ejemplo n.º 2
0
 public CaptionBlock( Logger logger, string caption, char symbol = '#', int maxLength = 80)
 {
     Logger = logger;
     c = caption;
     s = symbol;
     m = maxLength;
     Logger.NewLine();
     Logger.WriteLine( LogHelper.Header( "BEGIN: " + c, s, m) );
     Logger.NewLine();
     Logger.Indent();
 }
Ejemplo n.º 3
0
 public Indentation( Logger logger )
 {
     Logger = logger;
     Logger.Indent();
 }
Ejemplo n.º 4
0
 public Indentation(Logger logger)
 {
     Logger = logger;
     Logger.Indent();
 }