olena-2.0-78-g100a5de scribo/debug/logger.hh: Fix attributes initialization order.

--- scribo/ChangeLog | 4 ++++ scribo/scribo/debug/logger.hh | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/scribo/ChangeLog b/scribo/ChangeLog index e18a1c5..669d782 100644 --- a/scribo/ChangeLog +++ b/scribo/ChangeLog @@ -1,3 +1,7 @@ +2012-09-14 Guillaume Lazzara <z@lrde.epita.fr> + + * scribo/debug/logger.hh: Fix attributes initialization order. + 2012-09-07 Guillaume Lazzara <z@lrde.epita.fr> Take OCR confidence into account in HTML reconstruction. diff --git a/scribo/scribo/debug/logger.hh b/scribo/scribo/debug/logger.hh index 9153bf9..a7066d5 100644 --- a/scribo/scribo/debug/logger.hh +++ b/scribo/scribo/debug/logger.hh @@ -235,8 +235,8 @@ namespace scribo logger_::logger_() : level_(None), verbose_mode_(Mute), - stream_(std::cerr), - verbose_prefix_("LOG: ") + verbose_prefix_("LOG: "), + stream_(std::cerr) { // Magick::InitializeMagick(0); } -- 1.7.2.5
participants (1)
-
Guillaume Lazzara