Demote log lines to improve debug log SNR.

The debug logging is verbose and sometimes hard to read.

Demote some of the boilerplate output to log level 9, to make it easier
to see the important parts on lower verbosity levels.
This commit is contained in:
Lasse Karstensen
2017-07-27 14:08:49 +02:00
committed by Felipe Zimmerle
parent 5c7892ce89
commit 5e06a67fbe
3 changed files with 9 additions and 9 deletions

View File

@@ -245,7 +245,7 @@ JSON::JSON(Transaction *transaction) : m_transaction(transaction) {
};
debug(4, "JSON parser initialization");
debug(9, "JSON parser initialization");
/**
* Prefix and current key are initially empty
@@ -269,7 +269,7 @@ JSON::JSON(Transaction *transaction) : m_transaction(transaction) {
JSON::~JSON() {
debug(4, "JSON: Cleaning up JSON results");
debug(9, "JSON: Cleaning up JSON results");
yajl_free(m_data.handle);
}