Skip to content

Commit

Permalink
Merge branch 'pr1752' into stable
Browse files Browse the repository at this point in the history
* pr1752:
  (GH-1603) Ensure full path for log when relative path provided
  • Loading branch information
ferventcoder committed Mar 13, 2019
2 parents cb2799b + 7917dc6 commit 3cd9c0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chocolatey.console/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ private static void Main(string[] args)

if (!string.IsNullOrWhiteSpace(config.AdditionalLogFileLocation))
{
Log4NetAppenderConfiguration.configure_additional_log_file(config.AdditionalLogFileLocation);
Log4NetAppenderConfiguration.configure_additional_log_file(fileSystem.get_full_path(config.AdditionalLogFileLocation));
}

report_version_and_exit_if_requested(args, config);
Expand Down

0 comments on commit 3cd9c0d

Please sign in to comment.