From 582e9a1b4275d89b02d020e1155ee8a0aff65d3b Mon Sep 17 00:00:00 2001 From: "Enrico Loparco (eloparco)" Date: Mon, 19 Sep 2022 08:37:30 +0000 Subject: refactor(logs): use glog instead of prints Ref: HICN-788 Signed-off-by: Enrico Loparco (eloparco) Change-Id: Iedf75e1658a335985cc2dfd7b82ae61124f2371e --- libtransport/src/auth/signer.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libtransport/src/auth/signer.cc') diff --git a/libtransport/src/auth/signer.cc b/libtransport/src/auth/signer.cc index 500732ba1..484180108 100644 --- a/libtransport/src/auth/signer.cc +++ b/libtransport/src/auth/signer.cc @@ -200,8 +200,7 @@ CryptoHashType Signer::getHashType() const { } void Signer::display() { - std::cout << getStringSuite(suite_) << ": " << getStringSignature() - << std::endl; + LOG(INFO) << getStringSuite(suite_) << ": " << getStringSignature(); } // --------------------------------------------------------- -- cgit 1.2.3-korg