コード例 #1
0
ファイル: TextLogger.cs プロジェクト: ortzinator/mutinyirc
        private static void WriteText(LoggedItem logger, String text)
        {
            logger.Write(addTimestamp ? DateTime.Now.ToString(timeFormat) + ' ' + text : text);

            // Check for errors
            if (logger.Failed)
            {
                Error(logger.LastError);
            }
        }
コード例 #2
0
ファイル: TextLogger.cs プロジェクト: nerdshark/mutinyirc
        private static void WriteText(LoggedItem logger, String text)
        {
            logger.Write(addTimestamp ? DateTime.Now.ToString(timeFormat) + ' ' + text : text);

            // Check for errors
            if (logger.Failed)
            {
                Error(logger.LastError);
            }
        }