Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
将 CoolStorage 用作 ASP.NET 项目的一部分时,您可以在 Web.Config 中定义一个日志文件,其中 CoolStorage 活动被转储。
使用 CoolStorage for MonoTouch 时是否有类似的可能性?
其实很简单:
var docFolder = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); CSConfig.Logging = true; CSConfig.LogFileName = Path.Combine(docFolder,"coolstorage.log");
这会将所有 CoolStorage 活动记录在文档文件夹中的文件“coolstorage.log”中。