public static void StopCounterAndLog(CounterToken counterToken, string msg, LogLevel level = LogLevel.Info) { var elapsed = StopCounter(counterToken); if (!msg.Contains("{0}")) { msg += " {0}"; } Log.Write(level, msg, elapsed.TotalMilliseconds); }
public static CounterToken StartCounter () { var t = new CounterToken { Id = Guid.NewGuid ().ToString () }; var sw = new Stopwatch (); counters.Add (t, sw); sw.Start (); return t; }
public static CounterToken StartCounter() { var t = new CounterToken { Id = Guid.NewGuid().ToString() }; var sw = new Stopwatch(); counters.Add(t, sw); sw.Start(); return(t); }
public static TimeSpan StopCounter(CounterToken counterToken) { if (!counters.ContainsKey(counterToken)) { return(TimeSpan.Zero); } var sw = counters[counterToken]; sw.Stop(); counters.Remove(counterToken); return(sw.Elapsed); }
public static TimeSpan Stop(this CounterToken counterToken) { return(Log.StopCounter(counterToken)); }
public static void StopAndLog(this CounterToken counterToken, string msg, LogLevel level = LogLevel.Info) { Log.StopCounterAndLog(counterToken, msg, level); }
public static TimeSpan StopCounter (CounterToken counterToken) { if (!counters.ContainsKey (counterToken)) return TimeSpan.Zero; var sw = counters [counterToken]; sw.Stop (); counters.Remove (counterToken); return sw.Elapsed; }
public static void StopCounterAndLog (CounterToken counterToken, string msg, LogLevel level = LogLevel.Info) { var elapsed = StopCounter (counterToken); if (!msg.Contains ("{0}")) msg += " {0}"; Log.Write (level, msg, elapsed.TotalMilliseconds); }