예제 #1
0
        public static void Push(string tag)
        {
            if (!Enabled)
            {
                return;
            }
            if (Filter != null && Filter != Thread.CurrentThread)
            {
                return;
            }

            if (OnPush != null)
            {
                OnPush(tag);
            }

            _profiler.Push(tag);
        }