src/Logger.cc
author Tero Marttila <terom@fixme.fi>
Wed, 21 Jan 2009 23:07:22 +0200
branchnew_graphics
changeset 412 721c60072091
parent 365 65295dfbbf64
child 418 194bc810a570
permissions -rw-r--r--
new graphics code compiles... no, it doesn't work yet
185
25becd2cb026 that's not a prototype anymore... at least it shouldn't be
terom
parents:
diff changeset
     1
25becd2cb026 that's not a prototype anymore... at least it shouldn't be
terom
parents:
diff changeset
     2
#include "Logger.hh"
25becd2cb026 that's not a prototype anymore... at least it shouldn't be
terom
parents:
diff changeset
     3
365
65295dfbbf64 fix optimization-related warnings
terom
parents: 185
diff changeset
     4
Logger::Logger (std::ostream &stream, enum LogLevel level, const char *module) : 
65295dfbbf64 fix optimization-related warnings
terom
parents: 185
diff changeset
     5
    stream(stream), level(level), module(module) 
65295dfbbf64 fix optimization-related warnings
terom
parents: 185
diff changeset
     6
{
185
25becd2cb026 that's not a prototype anymore... at least it shouldn't be
terom
parents:
diff changeset
     7
    const char *l;
25becd2cb026 that's not a prototype anymore... at least it shouldn't be
terom
parents:
diff changeset
     8
25becd2cb026 that's not a prototype anymore... at least it shouldn't be
terom
parents:
diff changeset
     9
    switch (level) {
25becd2cb026 that's not a prototype anymore... at least it shouldn't be
terom
parents:
diff changeset
    10
        case FATAL: l = "FATAL"; break;
25becd2cb026 that's not a prototype anymore... at least it shouldn't be
terom
parents:
diff changeset
    11
        case ERROR: l = "ERROR"; break;
25becd2cb026 that's not a prototype anymore... at least it shouldn't be
terom
parents:
diff changeset
    12
        case WARN: l = "WARN"; break;
25becd2cb026 that's not a prototype anymore... at least it shouldn't be
terom
parents:
diff changeset
    13
        case INFO: l = "INFO"; break;
25becd2cb026 that's not a prototype anymore... at least it shouldn't be
terom
parents:
diff changeset
    14
        case DEBUG: l = "DEBUG"; break;
25becd2cb026 that's not a prototype anymore... at least it shouldn't be
terom
parents:
diff changeset
    15
        default: l = "???"; break;
25becd2cb026 that's not a prototype anymore... at least it shouldn't be
terom
parents:
diff changeset
    16
    };
25becd2cb026 that's not a prototype anymore... at least it shouldn't be
terom
parents:
diff changeset
    17
365
65295dfbbf64 fix optimization-related warnings
terom
parents: 185
diff changeset
    18
#ifndef NDEBUG    
185
25becd2cb026 that's not a prototype anymore... at least it shouldn't be
terom
parents:
diff changeset
    19
    stream << l << " [" << module << "] ";
365
65295dfbbf64 fix optimization-related warnings
terom
parents: 185
diff changeset
    20
#endif
185
25becd2cb026 that's not a prototype anymore... at least it shouldn't be
terom
parents:
diff changeset
    21
}
25becd2cb026 that's not a prototype anymore... at least it shouldn't be
terom
parents:
diff changeset
    22
25becd2cb026 that's not a prototype anymore... at least it shouldn't be
terom
parents:
diff changeset
    23
Logger::~Logger (void) {
365
65295dfbbf64 fix optimization-related warnings
terom
parents: 185
diff changeset
    24
#ifndef NDEBUG    
185
25becd2cb026 that's not a prototype anymore... at least it shouldn't be
terom
parents:
diff changeset
    25
    stream << std::endl;
365
65295dfbbf64 fix optimization-related warnings
terom
parents: 185
diff changeset
    26
#endif
185
25becd2cb026 that's not a prototype anymore... at least it shouldn't be
terom
parents:
diff changeset
    27
}
25becd2cb026 that's not a prototype anymore... at least it shouldn't be
terom
parents:
diff changeset
    28