Remove usages of log4j's placeholders-based log formatting calls (some of which were accidental and wrong anyway)

This commit is contained in:
2024-04-09 18:52:43 -05:00
parent c32d9110ce
commit 3440d45060
2 changed files with 5 additions and 4 deletions

View File

@ -662,11 +662,11 @@ public class QSlackImplementation
//////////////////////////////////////////////////////////////////////////
// Print result, which includes information about the message (like TS) //
//////////////////////////////////////////////////////////////////////////
LOG.info("Slack post result {}", result);
LOG.info("Slack post result: " + result);
}
catch(IOException | SlackApiException e)
{
LOG.error("error: {}", e.getMessage(), e);
LOG.error("error", e);
}
}