/// <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();
}
/// <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();
}