diff options
author | Enrico Loparco (eloparco) <eloparco@cisco.com> | 2022-09-19 08:37:30 +0000 |
---|---|---|
committer | Enrico Loparco <eloparco@cisco.com> | 2022-09-21 08:11:14 +0000 |
commit | 582e9a1b4275d89b02d020e1155ee8a0aff65d3b (patch) | |
tree | 78c3a86e4359f888ffa1450ffd753815fc5e9d20 /libtransport/src/auth/signer.cc | |
parent | 10e0758a2124e8d9d6253a9160e593303b38f71e (diff) |
refactor(logs): use glog instead of prints
Ref: HICN-788
Signed-off-by: Enrico Loparco (eloparco) <eloparco@cisco.com>
Change-Id: Iedf75e1658a335985cc2dfd7b82ae61124f2371e
Diffstat (limited to 'libtransport/src/auth/signer.cc')
-rw-r--r-- | libtransport/src/auth/signer.cc | 3 |
1 files changed, 1 insertions, 2 deletions
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(); } // --------------------------------------------------------- |