aboutsummaryrefslogtreecommitdiff
path: root/src/tests/logger.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2007-06-26 05:10:58 +0000
committerMike Buland <eichlan@xagasoft.com>2007-06-26 05:10:58 +0000
commitaa82dc64b397b6ca0d336d91638d4f4b849e3667 (patch)
treec17f285bf17f94812748424b854e8c3e437c25c2 /src/tests/logger.cpp
parent3f26c19b0b7a9fa73c58189788972ea43b72f014 (diff)
downloadlibbu++-aa82dc64b397b6ca0d336d91638d4f4b849e3667.tar.gz
libbu++-aa82dc64b397b6ca0d336d91638d4f4b849e3667.tar.bz2
libbu++-aa82dc64b397b6ca0d336d91638d4f4b849e3667.tar.xz
libbu++-aa82dc64b397b6ca0d336d91638d4f4b849e3667.zip
Fixed a minor bug in FString, and added the Logger and a test...it's cool, and
a decent replacement for multilog now that we use runit.
Diffstat (limited to '')
-rw-r--r--src/tests/logger.cpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/tests/logger.cpp b/src/tests/logger.cpp
new file mode 100644
index 0000000..a271443
--- /dev/null
+++ b/src/tests/logger.cpp
@@ -0,0 +1,28 @@
1#include "bu/logger.h"
2#include <errno.h>
3#include <stdlib.h>
4
5class Thing
6{
7 public:
8 Thing()
9 {
10 lineLog( 2, "Want a thing?");
11 }
12
13 void go( int i )
14 {
15 lineLog( 1, "GO!!!!");
16 }
17};
18
19int main()
20{
21 setLogLevel( 4 );
22 setLogFormat("%L: %y-%m-%d %h:%M:%s %f:%l:%F: %t");
23 lineLog( 5, "Hey, error: %s", strerror( errno ) );
24
25 Thing gh;
26 gh.go( 6);
27}
28