说明是在基于网站的Silverlight项目
日志是记录在网站工程的目录,部署到IIS上之后,日志是下载IIS虚拟目录下的@H_419_10@
参考代码@H_419_10@
public class MyLog
{
public static voID WriteErrLog(string strErrMod,string strErrDesc)
{
StreamWriter sw;
string strErrLog =
System.AppDomain.CurrentDomain.BaseDirectory + @"gErr.txt"; //获取写日志的路径 if (file.Exists(strErrLog)) { fileInfo ofile = new fileInfo(strErrLog); if (ofile.Length > 1024000) { ofile.Delete(); } } if (file.Exists(strErrLog)) { sw = file.AppendText(strErrLog); } else { sw = file.CreateText(strErrLog); } string strDate = "出错时间:" + string.Format("{0:yyyy-MM-dd HH:mm:ss}",DateTime.Now); string strErrMoudle = "出错模块:" + strErrMod; string strErrDescOut = "错误原因:" + strErrDesc; sw.Writeline(strDate); sw.Writeline(strErrMoudle); sw.Writeline(strErrDescOut); sw.Writeline("==================================================================="); sw.Flush(); sw.Close(); } }@H_419_10@ 总结
以上是内存溢出为你收集整理的Silverlight写错误日志全部内容,希望文章能够帮你解决Silverlight写错误日志所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)