]> git.mxchange.org Git - simgear.git/blob - simgear/debug/logstream.cxx
66940629225a1ccefbf4bb51c347efa4db3f3a50
[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 program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // 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., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22
23 #include "logstream.hxx"
24
25 bool            logbuf::logging_enabled = true;
26 fgDebugClass    logbuf::logClass        = FG_NONE;
27 fgDebugPriority logbuf::logPriority     = FG_INFO;
28 streambuf*      logbuf::sbuf            = NULL;
29
30 logbuf::logbuf()
31 {
32 //     if ( sbuf == NULL )
33 //      sbuf = cerr.rdbuf();
34 }
35
36 logbuf::~logbuf()
37 {
38     if ( sbuf )
39             sync();
40 }
41
42 void
43 logbuf::set_sb( streambuf* sb )
44 {
45     if ( sbuf )
46             sync();
47
48     sbuf = sb;
49 }
50
51 void
52 logbuf::set_log_level( fgDebugClass c, fgDebugPriority p )
53 {
54     logClass = c;
55     logPriority = p;
56 }
57
58 void
59 logstream::setLogLevels( fgDebugClass c, fgDebugPriority p )
60 {
61     logbuf::set_log_level( c, p );
62 }
63