mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-19 01:25:40 -05:00
Bug fix for https://github.com/Microsoft/azuredatastudio/issues/2923 and misc other fixes (#711)
This commit is contained in:
@@ -35,11 +35,7 @@ namespace Microsoft.SqlTools.ResourceProvider
|
||||
string logFilePath = commandOptions.LogFilePath;
|
||||
if (string.IsNullOrWhiteSpace(logFilePath))
|
||||
{
|
||||
logFilePath = "SqlToolsResourceProviderService";
|
||||
}
|
||||
if (!string.IsNullOrWhiteSpace(commandOptions.LoggingDirectory))
|
||||
{
|
||||
logFilePath = Path.Combine(commandOptions.LoggingDirectory, logFilePath);
|
||||
logFilePath = Logger.GenerateLogFilePath("SqlToolsResourceProviderService");
|
||||
}
|
||||
|
||||
// turn on Verbose logging during early development
|
||||
|
||||
Reference in New Issue
Block a user