1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-24 17:17:40 +01: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)