Fix files for make.
[siwg.git] / espy / src / Log.h
blob6ebeab184923e0a5cf9603676625a5e54bcc8268
1 #include<iostream>
2 #include<string>
3 #include<unistd.h>
4 using namespace std;
6 class Log {
7 public:
8 static void error(string msg) {
9 cout << "error " << msg << endl;
12 static void log(string msg) {
13 cout << msg << endl;
16 static void debug(string msg) {
17 cout << " DEBUG " << getpid() << " " << msg << endl;