aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.ServerApplication
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-15 11:28:07 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-15 11:28:07 -0400
commit9aac530aec0bf992ae36a3463b99f71af405066f (patch)
tree132eb8ee6bef93bac9c7355762e45c70d3921725 /MediaBrowser.ServerApplication
parent548081502219b05a52f721b0fd35ceb49838b83d (diff)
change crash log file name
Diffstat (limited to 'MediaBrowser.ServerApplication')
-rw-r--r--MediaBrowser.ServerApplication/MainStartup.cs2
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);