Beispiel #1
0
        private SubLog GetCall(string callName)
        {
            var subLogDict = new SubLog();

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