fix: fix verbose option
This fixes the broken behaviour of th verbose option by moving logger configuration call options handler
This commit is contained in:
parent
fe01d1ee5c
commit
2f1b2f42f6
@ -12,6 +12,9 @@ public static class CliOptionsHandlers
|
|||||||
FileInfo? outputFile, bool useDatabase, string? sqlQuery,
|
FileInfo? outputFile, bool useDatabase, string? sqlQuery,
|
||||||
IEnumerable<FileInfo>? concatFiles, bool isVerbose)
|
IEnumerable<FileInfo>? concatFiles, bool isVerbose)
|
||||||
{
|
{
|
||||||
|
RuntimeStorage.IsVerbose = isVerbose;
|
||||||
|
RuntimeStorage.ConfigureLogger();
|
||||||
|
|
||||||
Log.Information("Handler started with options: " +
|
Log.Information("Handler started with options: " +
|
||||||
"-i: {input}; -o {output}; -d {useDatabase}; " +
|
"-i: {input}; -o {output}; -d {useDatabase}; " +
|
||||||
"-q: {sqlQuery}; -c: {concatFiles}; -v: {verbosityLevel}.",
|
"-q: {sqlQuery}; -c: {concatFiles}; -v: {verbosityLevel}.",
|
||||||
|
@ -86,8 +86,6 @@ public static class Helpers
|
|||||||
{"Dec", 12},
|
{"Dec", 12},
|
||||||
};
|
};
|
||||||
|
|
||||||
Log.Debug("Converting string {dateString} to date...", dateString);
|
|
||||||
|
|
||||||
var year = Int32.Parse(dateString.Split(" ")[4]);
|
var year = Int32.Parse(dateString.Split(" ")[4]);
|
||||||
var month = monthNameNumber[dateString.Split(" ")[1]];
|
var month = monthNameNumber[dateString.Split(" ")[1]];
|
||||||
var day = Int32.Parse(dateString.Split(" ")[2]);
|
var day = Int32.Parse(dateString.Split(" ")[2]);
|
||||||
@ -95,8 +93,6 @@ public static class Helpers
|
|||||||
var minute = Int32.Parse(dateString.Split(" ")[3].Split(":")[1]);
|
var minute = Int32.Parse(dateString.Split(" ")[3].Split(":")[1]);
|
||||||
var second = Int32.Parse(dateString.Split(" ")[3].Split(":")[2]);
|
var second = Int32.Parse(dateString.Split(" ")[3].Split(":")[2]);
|
||||||
|
|
||||||
Log.Debug("String converted successfully.");
|
|
||||||
|
|
||||||
return new DateTime(year, month, day, hour, minute, second);
|
return new DateTime(year, month, day, hour, minute, second);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -15,12 +15,15 @@ public static class RuntimeStorage
|
|||||||
|
|
||||||
public static void ConfigureLogger()
|
public static void ConfigureLogger()
|
||||||
{
|
{
|
||||||
|
var logLevel =
|
||||||
|
IsVerbose ? LogEventLevel.Verbose : LogEventLevel.Warning;
|
||||||
|
|
||||||
Log.Logger = new LoggerConfiguration()
|
Log.Logger = new LoggerConfiguration()
|
||||||
.MinimumLevel.Verbose()
|
.MinimumLevel.Verbose()
|
||||||
.WriteTo.Console(IsVerbose ? LogEventLevel.Verbose : LogEventLevel.Warning,
|
.WriteTo.Console(logLevel,
|
||||||
outputTemplate: "{Message:lj}{NewLine}{Exception}")
|
outputTemplate: "{Message:lj}{NewLine}{Exception}")
|
||||||
.WriteTo.File(Path.Join(LogsFolder, "log.txt"),
|
.WriteTo.File(Path.Join(LogsFolder, "log.txt"),
|
||||||
restrictedToMinimumLevel: IsVerbose ? LogEventLevel.Verbose : LogEventLevel.Warning,
|
restrictedToMinimumLevel: logLevel,
|
||||||
rollingInterval: RollingInterval.Day)
|
rollingInterval: RollingInterval.Day)
|
||||||
.CreateLogger();
|
.CreateLogger();
|
||||||
}
|
}
|
||||||
|
@ -182,13 +182,6 @@ class Program
|
|||||||
Arity = ArgumentArity.ZeroOrOne
|
Arity = ArgumentArity.ZeroOrOne
|
||||||
};
|
};
|
||||||
|
|
||||||
verboseOption.AddValidator(result =>
|
|
||||||
{
|
|
||||||
RuntimeStorage.IsVerbose = result.GetValueForOption(verboseOption);
|
|
||||||
});
|
|
||||||
|
|
||||||
RuntimeStorage.ConfigureLogger();
|
|
||||||
|
|
||||||
/*----------------------Root Command Setup-------------------------*/
|
/*----------------------Root Command Setup-------------------------*/
|
||||||
|
|
||||||
var rootCommand =
|
var rootCommand =
|
||||||
|
Loading…
Reference in New Issue
Block a user