]> git.mxchange.org Git - simgear.git/blob - simgear/debug/logstream.cxx
Melchior FRANZ:
[simgear.git] / simgear / debug / logstream.cxx
1 // Stream based logging mechanism.
2 //
3 // Written by Bernie Bright, 1998
4 //
5 // Copyright (C) 1998  Bernie Bright - bbright@c031.aone.net.au
6 //
7 // This library is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU Library General Public
9 // License as published by the Free Software Foundation; either
10 // version 2 of the License, or (at your option) any later version.
11 //
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // Library General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23 #include "logstream.hxx"
24
25 logstream *global_logstream = NULL;
26
27 bool            logbuf::logging_enabled = true;
28 sgDebugClass    logbuf::logClass        = SG_NONE;
29 sgDebugPriority logbuf::logPriority     = SG_INFO;
30 streambuf*      logbuf::sbuf            = NULL;
31
32 logbuf::logbuf()
33 {
34 //     if ( sbuf == NULL )
35 //      sbuf = cerr.rdbuf();
36 }
37
38 logbuf::~logbuf()
39 {
40     if ( sbuf )
41             sync();
42 }
43
44 void
45 logbuf::set_sb( streambuf* sb )
46 {
47     if ( sbuf )
48             sync();
49
50     sbuf = sb;
51 }
52
53 void
54 logbuf::set_log_level( sgDebugClass c, sgDebugPriority p )
55 {
56     logClass = c;
57     logPriority = p;
58 }
59
60 void
61 logbuf::set_log_classes (sgDebugClass c)
62 {
63     logClass = c;
64 }
65
66 sgDebugClass
67 logbuf::get_log_classes ()
68 {
69     return logClass;
70 }
71
72 void
73 logbuf::set_log_priority (sgDebugPriority p)
74 {
75     logPriority = p;
76 }
77
78 sgDebugPriority
79 logbuf::get_log_priority ()
80 {
81     return logPriority;
82 }
83
84 void
85 logstream::setLogLevels( sgDebugClass c, sgDebugPriority p )
86 {
87     logbuf::set_log_level( c, p );
88 }
89