forked from j62/ctbrec
1
0
Fork 0

Improve startup status message for HMAC auth

This commit is contained in:
0xboobface 2019-12-21 17:49:52 +01:00
parent 630cb6a6a5
commit 306c3eaf3c
1 changed files with 2 additions and 3 deletions

View File

@ -87,9 +87,8 @@ public class HttpServer {
registerAlertSystem();
config = Config.getInstance();
if (config.getSettings().key != null) {
LOG.info("HMAC authentication is enabled");
}
LOG.info("HMAC authentication is {}", config.getSettings().key != null ? "enabled" : "disabled");
recorder = new NextGenLocalRecorder(config, sites);
for (Site site : sites) {
if (site.isEnabled()) {