From 2a66098d30b7ad12dbeb8d8af8178ae3470fa5e1 Mon Sep 17 00:00:00 2001 From: andreas <andreas@5a81b35b-ba03-0410-adc8-b2c5c5119f08> Date: Fri, 4 Jun 2010 16:50:45 +0000 Subject: [PATCH] bugfix in export_logger.cc git-svn-id: https://dng.biozentrum.unibas.ch/svn/openstructure/trunk@2343 5a81b35b-ba03-0410-adc8-b2c5c5119f08 --- modules/base/pymod/export_logger.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/base/pymod/export_logger.cc b/modules/base/pymod/export_logger.cc index b385742e7..deefb408c 100644 --- a/modules/base/pymod/export_logger.cc +++ b/modules/base/pymod/export_logger.cc @@ -39,7 +39,7 @@ void pop_verb() Logger::Instance().PopVerbosityLevel(); } -void log_error(const String& m) {LOGN_MESSAGE(m);} +void log_error(const String& m) {LOGN_ERROR(m);} void log_message(const String& m) {LOGN_MESSAGE(m);} void log_verbose(const String& m) {LOGN_VERBOSE(m);} void log_debug(const String& m) {LOGN_DEBUG(m);} -- GitLab