~markwright/scalestack/zeromq

« back to all changes in this revision

Viewing changes to scalestack/kernel/logger.h

  • Committer: Eric Day
  • Date: 2011-01-25 20:51:51 UTC
  • mto: This revision was merged to the branch mainline in revision 63.
  • Revision ID: eday@oddments.org-20110125205151-rlam04duepoczo9v
Moved common into kernel, other related cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
#include <cstdarg>
28
28
 
29
 
#include <scalestack/common/exception.h>
 
29
#include <scalestack/kernel/exception.h>
30
30
#include <scalestack/kernel/log.h>
31
31
 
32
32
namespace scalestack
160
160
    else
161
161
      _set_fatal_message(format, arguments);
162
162
  }
163
 
  catch (common::exception&)
 
163
  catch (kernel::exception&)
164
164
  {
165
165
    va_end(arguments);
166
166
    throw;