1
0
mirror of https://github.com/Kopano-dev/kopano-ol-extension.git synced 2023-10-10 11:37:40 +00:00

[KOE-178] Fix for invalid account id in message service configuration

This commit is contained in:
Patrick Simpson
2018-11-13 14:51:18 +02:00
parent d423ddc1c4
commit 8d72f50e10
3 changed files with 18 additions and 10 deletions

View File

@@ -98,9 +98,9 @@ namespace OutlookRestarter
// Start the process
Process process = new Process();
process.StartInfo = new ProcessStartInfo(procPath, argsString);
Logger.Instance.Debug(typeof(OutlookRestarter), "Starting process: {0}", process);
Logger.Instance.Debug(typeof(OutlookRestarter), "Starting process: {0} - {1}", procPath, argsString);
process.Start();
Logger.Instance.Debug(typeof(OutlookRestarter), "Started process: {0}", process);
Logger.Instance.Debug(typeof(OutlookRestarter), "Started process: {0} - {1}", procPath, argsString);
}
}
catch(Exception e)