diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-15 11:28:07 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-15 11:28:07 -0400 |
| commit | 9aac530aec0bf992ae36a3463b99f71af405066f (patch) | |
| tree | 132eb8ee6bef93bac9c7355762e45c70d3921725 /MediaBrowser.ServerApplication | |
| parent | 548081502219b05a52f721b0fd35ceb49838b83d (diff) | |
change crash log file name
Diffstat (limited to 'MediaBrowser.ServerApplication')
| -rw-r--r-- | MediaBrowser.ServerApplication/MainStartup.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.ServerApplication/MainStartup.cs b/MediaBrowser.ServerApplication/MainStartup.cs index c6bd65750..bbee727b3 100644 --- a/MediaBrowser.ServerApplication/MainStartup.cs +++ b/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); |
