summaryrefslogtreecommitdiff
path: root/src/lib/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/log.h')
-rw-r--r--src/lib/log.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/log.h b/src/lib/log.h
index 2a242e24c..2e5d69a08 100644
--- a/src/lib/log.h
+++ b/src/lib/log.h
@@ -37,10 +37,12 @@ public:
enum Level {
STANDARD = 0,
- VERBOSE = 1
+ VERBOSE = 1,
+ TIMING = 2
};
void log (std::string m, Level l = STANDARD);
+ void microsecond_log (std::string m, Level l = STANDARD);
void set_level (Level l);