Browse Source

Merge pull request #1738 from arkpar/eth_log

Fixed uninitialized logging tag
cl-refactor
Gav Wood 10 years ago
parent
commit
392ab833ff
  1. 2
      libdevcore/Log.h

2
libdevcore/Log.h

@ -181,7 +181,7 @@ protected:
bool m_autospacing = false; bool m_autospacing = false;
unsigned m_verbosity = 0; unsigned m_verbosity = 0;
std::stringstream m_sstr; ///< The accrued log entry. std::stringstream m_sstr; ///< The accrued log entry.
LogTag m_logTag; LogTag m_logTag = LogTag::None;
}; };
/// Logging class, iostream-like, that can be shifted to. /// Logging class, iostream-like, that can be shifted to.

Loading…
Cancel
Save