소스 검색

change crash log file name

Luke Pulverenti 11 년 전
부모
커밋
9aac530aec
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      MediaBrowser.ServerApplication/MainStartup.cs

+ 1 - 1
MediaBrowser.ServerApplication/MainStartup.cs

@@ -417,7 +417,7 @@ namespace MediaBrowser.ServerApplication
         {
             _logger.ErrorException("UnhandledException", ex);
 
-            var path = Path.Combine(_appHost.ServerConfigurationManager.ApplicationPaths.LogDirectoryPath, "crash_" + Guid.NewGuid() + ".txt");
+            var path = Path.Combine(_appHost.ServerConfigurationManager.ApplicationPaths.LogDirectoryPath, "unhandled_" + Guid.NewGuid() + ".txt");
 
             var builder = LogHelper.GetLogMessage(ex);