1
0
mirror of https://github.com/bitwarden/server synced 2025-12-15 15:53:59 +00:00

remove duplicate quotes.

This commit is contained in:
Kyle Spearrin
2018-04-16 17:08:49 -04:00
parent ce92462041
commit 795cf8e20e

View File

@@ -47,7 +47,7 @@ namespace Bit.Jobs
return;
}
_logger.LogInformation("Starting job '{0}'.", parameters["j"]);
_logger.LogInformation("Starting job {0}.", parameters["j"]);
try
{
@@ -75,7 +75,7 @@ namespace Bit.Jobs
throw e;
}
_logger.LogInformation("Finished job '{0}'.", parameters["j"]);
_logger.LogInformation("Finished job {0}.", parameters["j"]);
}
private static IDictionary<string, string> ParseParameters(string[] args)