From 15004d80ee796b54152face19e81047444b4a1a6 Mon Sep 17 00:00:00 2001 From: CJ Cobb Date: Thu, 3 Mar 2022 21:50:13 -0500 Subject: [PATCH] Log AsyncCallData error at error level --- src/etl/ETLSource.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/etl/ETLSource.cpp b/src/etl/ETLSource.cpp index 6141d8d56..c17e1d23c 100644 --- a/src/etl/ETLSource.cpp +++ b/src/etl/ETLSource.cpp @@ -573,7 +573,7 @@ public: } if (!status_.ok()) { - BOOST_LOG_TRIVIAL(debug) + BOOST_LOG_TRIVIAL(error) << "AsyncCallData status_ not ok: " << " code = " << status_.error_code() << " message = " << status_.error_message();