diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-12-17 22:34:39 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-12-17 22:35:01 +0000 |
commit | 02827d51553ee75a6ba89f230c956983f58a451d (patch) | |
tree | 491e9c130f9d96c628097a88fd0464c9b386d309 | |
parent | Merge pull request #540 (diff) | |
download | monero-02827d51553ee75a6ba89f230c956983f58a451d.tar.xz |
p2p: minor log formatting fix
-rw-r--r-- | src/p2p/net_node.inl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/p2p/net_node.inl b/src/p2p/net_node.inl index aa22d5b23..43ccd8679 100644 --- a/src/p2p/net_node.inl +++ b/src/p2p/net_node.inl @@ -182,7 +182,7 @@ namespace nodetool if(time(nullptr) >= it->second) { m_blocked_ips.erase(it); - LOG_PRINT_CYAN("IP " << epee::string_tools::get_ip_string_from_int32(addr) << "is unblocked.", LOG_LEVEL_0); + LOG_PRINT_CYAN("IP " << epee::string_tools::get_ip_string_from_int32(addr) << " unblocked.", LOG_LEVEL_0); return true; } return false; |