serilog

    1熱度

    1回答

    我們的遺留日誌記錄框架(.NET 4.5)將迭代Exception.data並記錄每個Exception.data鍵值。記錄與當前異常相關的上下文道具是很好的。有沒有辦法配置Serilog來記錄Exception.data鍵值? Serilog 2

    1熱度

    1回答

    根據Serilog's documentation,可以記錄字典,並且serilog將解構它,包括深入解構對象。 如果是這樣的話,沒有任何人有一個想法,爲什麼預期下面的代碼不起作用: public class ActionLoggingAttribute : ActionFilterAttribute { private ILogger _logger; public Ac

    2熱度

    1回答

    我試圖在Owin管道添加使用LogContext簡單的富集 我的記錄器配置 // configure logger Log.Logger = new LoggerConfiguration() .Enrich.WithProperty("B", 2) .ReadFrom.AppSettings() .Enrich.FromLogContext()

    0熱度

    1回答

    我是新的在asp.net核心,並希望做一個示例項目來清除我的概念。我想在asp.net核心中使用Serilog創建一個記錄器,但是我在project.json文件中添加serilog引用時遇到問題。 它顯示了一個錯誤: 依存Serilog.Sinks.MSSqlServer不支持 framework.NETCoreApp,版本= V1.0 我google了很多,但沒有找到解決方案,仍然在尋找它。我

    0熱度

    1回答

    在我appsettings.json我已經寫了: { "Logging": { "PathLogsFile": "./Logs", "IncludeScopes": false, "LogLevel": { "Default": "Debug", "System": "Information", "Micros

    1熱度

    1回答

    我正在嘗試使用Serilog.Sinks.MSSqlServerCore(1.1.0)和Serilog.Settings.Configuration(2.2.0)。 Serilog.Settings.Configuration與File和Seq等接收器正常工作。 只要我將Serilog.Sinks.MSSqlServerCore添加到project.json並嘗試再次運行該程序,就會得到一個「無法

    0熱度

    2回答

    我想從配置文件中添加最小日誌級別和滾動文件路徑等SeriLog設置。該標準是他們難以像這樣的代碼: public Startup(IHostingEnvironment env) { var builder = new ConfigurationBuilder() .SetBasePath(env.ContentRootPath) .AddJsonFile("a

    0熱度

    1回答

    我可以將此標量值轉換爲接收器內的兩個獨立屬性嗎? 接收器將使用Marten將logevent作爲json對象存儲在Postgresql中。 var sensorInput = new { Latitude = 25, Longitude = 134 }; Log.Information("Test {sensorInput}", sensorInput); 以我JSON對象我想此存儲爲兩個單

    1熱度

    1回答

    我的應用程序當前正在使用Serilog版本1.5進行日誌記錄,我們決定升級到Serilog 2.3.0。當升級到PermitCrossAppDomainCalls的編譯時錯誤時。如果該屬性在Serilog v2.3中受支持,有何想法? 錯誤行: LogContext.PermitCrossAppDomainCalls = true; 錯誤消息 「Serilog.Context.LogContext

    1熱度

    1回答

    我使用以下代碼嘗試使用Serilog和DocumentDB接收器。我看到創建了數據庫(診斷)和集合(日誌),但我沒有在Azure門戶的DocumentExplorer中看到任何文檔。 這是代碼。 class Program { static void Main(string[] args) { Serilog.Debugging.SelfLog.Enable(ms