maint: use info instead of log function

This commit is contained in:
2023-02-04 22:34:22 +00:00
parent 57701df839
commit 3bafca1716
2 changed files with 3 additions and 3 deletions

View File

@ -50,7 +50,7 @@ namespace crypto_key
utils::cryptography::ecc::key key{};
if (load_key(key))
{
console::log("Loaded cryptographic key: %llX", key.get_hash());
console::info("Loaded cryptographic key: %llX", key.get_hash());
return key;
}

View File

@ -61,14 +61,14 @@ namespace
const auto packet = format_command(true);
s.send(master, packet);
console::log("Sent kill command to %s", master.to_string().data());
console::info("Sent kill command to %s", master.to_string().data());
}
else if (to_remove != nullptr)
{
const auto packet = format_command(false);
s.send(master, packet);
console::log("Sent remove command to %s", master.to_string().data());
console::info("Sent remove command to %s", master.to_string().data());
}
}