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 16:01:36 -0500 |
| commit | 234a5ad7123417cc90bbdc7d2bbe298ef4ce8d39 (patch) | |
| tree | d97bdbba6485ae94fefd93dfd1d44a174f73425f | |
| parent | ab1f5db146557187e7605bfacc13d4e56c1929d3 (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(); |
