Skip to content

Commit 305c27d

Browse files
committed
在计算运算时间时,记录类名用完整类名
1 parent ab4ec76 commit 305c27d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Song.Site/BasePage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ private void InitContext(HttpContext context)
212212
TimeSpan ts = afterDT.Subtract(beforDT);
213213
if (ts.TotalMilliseconds >= 100)
214214
{
215-
WeiSha.Common.Log.Debug(this.GetType().Name, string.Format("页面输出,耗时:{0}ms", ts.TotalMilliseconds));
215+
WeiSha.Common.Log.Debug(this.GetType().FullName, string.Format("页面输出,耗时:{0}ms", ts.TotalMilliseconds));
216216
}
217217
}
218218
#endregion

0 commit comments

Comments
 (0)