Add extra quotations around output

This commit is contained in:
Dean Herbert 2019-08-12 01:42:05 +09:00
parent ce62f6b56e
commit ff4b271f64
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ protected override void ParseStreamInto(StreamReader stream, T output)
{
if (!Enum.TryParse(line.Substring(1, line.Length - 2), out section))
{
Logger.Log($"Unknown section \"{line}\" in {output}");
Logger.Log($"Unknown section \"{line}\" in \"{output}\"");
section = Section.None;
}
@ -49,7 +49,7 @@ protected override void ParseStreamInto(StreamReader stream, T output)
}
catch (Exception e)
{
Logger.Log($"Failed to process line \"{line}\" into {output}: {e.Message}", LoggingTarget.Runtime, LogLevel.Important);
Logger.Log($"Failed to process line \"{line}\" into \"{output}\": {e.Message}", LoggingTarget.Runtime, LogLevel.Important);
}
}
}