Exemplo n.º 1
0
        private SubLog GetCall(string callName)
        {
            var subLogDict = new SubLog();

            return(callLog.GetOrAdd(callName, subLogDict));
        }
Exemplo n.º 2
0
 public Logger()
 {
     overviewLog = new SubLog();
     callLog     = new ConcurrentDictionary <string, SubLog>();
 }