]> git.mxchange.org Git - simgear.git/blob - simgear/debug/logstream.cxx
Add a proper return statement for MSVC.
[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 Library General Public
18 // License along with this library; if not, write to the
19 // Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 // Boston, MA  02111-1307, USA.
21 //
22 // $Id$
23
24 #include "logstream.hxx"
25
26 logstream *global_logstream = NULL;
27
28 bool            logbuf::logging_enabled = true;
29 sgDebugClass    logbuf::logClass        = SG_NONE;
30 sgDebugPriority logbuf::logPriority     = SG_INFO;
31 streambuf*      logbuf::sbuf            = NULL;
32
33 logbuf::logbuf()
34 {
35 //     if ( sbuf == NULL )
36 //      sbuf = cerr.rdbuf();
37 }
38
39 logbuf::~logbuf()
40 {
41     if ( sbuf )
42             sync();
43 }
44
45 void
46 logbuf::set_sb( streambuf* sb )
47 {
48     if ( sbuf )
49             sync();
50
51     sbuf = sb;
52 }
53
54 void
55 logbuf::set_log_level( sgDebugClass c, sgDebugPriority p )
56 {
57     logClass = c;
58     logPriority = p;
59 }
60
61 void
62 logbuf::set_log_classes (sgDebugClass c)
63 {
64     logClass = c;
65 }
66
67 sgDebugClass
68 logbuf::get_log_classes ()
69 {
70     return logClass;
71 }
72
73 void
74 logbuf::set_log_priority (sgDebugPriority p)
75 {
76     logPriority = p;
77 }
78
79 sgDebugPriority
80 logbuf::get_log_priority ()
81 {
82     return logPriority;
83 }
84
85 void
86 logstream::setLogLevels( sgDebugClass c, sgDebugPriority p )
87 {
88     logbuf::set_log_level( c, p );
89 }
90