Britbot
static void Britbot.Logger.Count ( string  key) [inline, static]

Definition at line 109 of file Logger.cs.

        {
#if DEBUG
            if (Logger.count.ContainsKey(key))
            {
                Logger.count[key]++;
            }
            else
            {
                Logger.count.Add(key, 1);
            }
#endif
        }