我在Azure上托管了一个网站。我正在尝试记录服务器上发生的事情。
在“应用程序诊断”下,我将APPLICATION LOGGING (FILE SYSTEM)
设置为ON
我没有任何存储帐户,因此无法使用(TABLE STORAGE)
或(BLOB STORAGE)
。
以下是我用来写日志的代码示例:
Trace.TraceInformation("This is a test message");
文件在[mySite]/Log Files/Application
中创建,但它们只有两行:
2014-11-05T09:17:30 PID[redacted] Information DotNetOpenAuth.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=[redacted] (official)
2014-11-05T09:17:30 PID[redacted] Information Reporting will use isolated storage with scope: Domain, Assembly, Machine
是否还需要设置其他设置?
在尝试写入日志之前是否需要执行操作?