From 4f70cfb09a4ff347dead1e6a1ccb730847500104 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Wed, 10 Jun 2015 19:09:19 +0900 Subject: [PATCH] Fix for isChannelVisible link error. --- libdevcore/Log.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libdevcore/Log.cpp b/libdevcore/Log.cpp index 1e5c2d8ab..1db86cf9c 100644 --- a/libdevcore/Log.cpp +++ b/libdevcore/Log.cpp @@ -40,7 +40,7 @@ mutex x_logOverride; /// or equal to the currently output verbosity (g_logVerbosity). static map s_logOverride; -bool isLogVisible(std::type_info const* _ch, bool _default) +bool isChannelVisible(std::type_info const* _ch, bool _default) { Guard l(x_logOverride); if (s_logOverride.count(_ch))