示例#1
0
        public static void CoreFunc()
        {
            while (true)
            {
                var logs = LogCollector.Fetch();
                LogWriter.Flush(logs);

                if (LogCollector.Count() >= 1000)
                {
                    Thread.Sleep(1000);
                }
                else
                {
                    Thread.Sleep(30000);     //DEBUG:set to 1000 when debuging so that you can get the result immediately.
                }
            }
        }