diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-01-13 15:58:45 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-01-13 15:58:45 -0500 |
| commit | befadd9d32b667d4f811f07b312a38a26c8116f8 (patch) | |
| tree | 66a28d0ae92231a05c24e1c75ee947563a3b4361 | |
| parent | 9f6fcc9e058848e5a07400ebca6c1357947b9336 (diff) | |
add logging
| -rw-r--r-- | MediaBrowser.ServerApplication/MainStartup.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.ServerApplication/MainStartup.cs b/MediaBrowser.ServerApplication/MainStartup.cs index ac6fd1bbe..471bd4c8d 100644 --- a/MediaBrowser.ServerApplication/MainStartup.cs +++ b/MediaBrowser.ServerApplication/MainStartup.cs @@ -591,7 +591,7 @@ namespace MediaBrowser.ServerApplication } catch (Exception ex) { - logger.ErrorException("Error installing ImageMagick", ex); + logger.ErrorException("Error installing Visual Studio C++ runtime", ex); } } @@ -619,6 +619,8 @@ namespace MediaBrowser.ServerApplication ErrorDialog = false }; + _logger.Info("Running {0}", startInfo.FileName); + using (var process = Process.Start(startInfo)) { process.WaitForExit(); |
