Before the argv options are parsed, bees runs at log level DEBUG.
Some messages are emitted before the log level can be set.
Replace these with BEESTRACE--we only need them if there's an exception.
Signed-off-by: Zygo Blaxell <bees@furryterror.org>
void
block_signals()
{
- BEESLOGDEBUG("Masking signals");
+ BEESTRACE("Masking signals");
DIE_IF_NON_ZERO(sigemptyset(&new_sigset));
DIE_IF_NON_ZERO(sigaddset(&new_sigset, SIGTERM));
// Create a context so we can apply configuration to it
shared_ptr<BeesContext> bc = make_shared<BeesContext>();
- BEESLOGDEBUG("context constructed");
+ BEESTRACE("context constructed");
// Defaults
bool use_relative_paths = false;