summaryrefslogtreecommitdiff
path: root/libcult/cult/trace/log.cxx
blob: f77c2c38a6c596b407ced9bc5adf913108bbd9c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// file      : cult/trace/log.cxx
// author    : Boris Kolpackov <boris@kolpackov.net>
// copyright : Copyright (c) 2005-2010 Boris Kolpackov
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#include <cult/trace/log.hxx>

#include <iostream>

namespace Cult
{
  namespace Trace
  {
    Log::
    Log (Int level)
        : level_ (level)
    {
    }

    Int Log::
    level () const
    {
      return level_;
    }

    Void Log::
    level (Int level)
    {
      level_ = level;
    }

    Log& Log::
    instance ()
    {
      //@@ Need to use -once initialization. Plus is it legal to
      //   use trace in (static) dtors?
      //
      static Log log;
      return log;
    }

    Void Log::
    log_impl (Record const& r)
    {
      std::cerr << '[' << r.id () << ':' << r.level () << "] " << r.text ()
                << std::endl;
    }
  }
}