日志管理

        /// <summary>
        /// <p><b>メソッド名:</b>WriteLogMess</p>
        /// <p><b>概要説明:</b>ログを書くこと</p>
        /// <p><b>作成者  :</b>王開開</p>
        /// <p><b>作成日  :</b>2012/02/06</p>
        /// <p><b>修正履歴:</b>無し</p>
        /// </summary>
        /// <param name="strLog">ログ内容 </param>
        /// <exception cref=""></exception>
        /// <example> WriteLogMess("strLog")</example>
        private void WriteLogMess(string strLog)
        {
            string strCallMethodName;
            strCallMethodName = new StackTrace(true).GetFrame(1).GetMethod().Name;
            StreamWriter sw;
            String strFilePath = AppDomain.CurrentDomain.BaseDirectory + System.DateTime.Now.ToString("yyyyMMdd") + ".log";
            if (File.Exists(strFilePath))
            {
                sw = File.AppendText(strFilePath);
            }
            else
            {
                sw = File.CreateText(strFilePath);
            }
            sw.Write(System.DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss") + "{" + strCallMethodName + "}" + strLog + Environment.NewLine);
            sw.Close();
        }
        /// <summary>
        /// <p><b>メソッド名:</b>WriteLogMess</p>
        /// <p><b>概要説明:</b>ログを書くこと</p>
        /// <p><b>作成者  :</b>王開開</p>
        /// <p><b>作成日  :</b>2012/02/06</p>
        /// <p><b>修正履歴:</b>無し</p>
        /// </summary>
        /// <param name="strFormName">画面ID</param>
        /// <param name="strLog">ログ内容 </param>
        /// <exception cref=""></exception>
        /// <example> WriteLogMess("strFormName","strLog")</example>
        private void WriteLogMess(String strFormName, String strLog)
        {
             String strCallMethodName;
             strCallMethodName = new StackTrace(true).GetFrame(1).GetMethod().Name;
             StreamWriter  sw;
        
            String strFilePath = AppDomain.CurrentDomain.BaseDirectory + System.DateTime.Now.ToString("yyyyMMdd") + ".log";
            if(File.Exists(strFilePath))
            {
                sw = File.AppendText(strFilePath);
            }
            else
            {
                sw = File.CreateText(strFilePath);      
            }
            sw.Write(System.DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss") + "[" + strFormName + "]" + "{" + strCallMethodName + "}" + strLog + Environment.NewLine);
            sw.Close();
        }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值