public void L1CallL2()
        {
            log.DebugFormat("L1 calling L2");
            var l2 = new L2(_context);

            l2.L2Call();
        }
Esempio n. 2
0
 public L2(string context) {
     _context = context;
     log = new ContextLogger(logBase, "[" + context + "] ");
     log.DebugFormat("L2 logger created");
 }
 public L2(string context)
 {
     _context = context;
     log      = new ContextLogger(logBase, "[" + context + "] ");
     log.DebugFormat("L2 logger created");
 }
 public void L2Call()
 {
     log.DebugFormat("L2 call");
 }