Scarab  v2.4.4
Project 8 C++ Utility Library
test_time.cc
Go to the documentation of this file.
1 /*
2  * test_time.cc
3  *
4  * Created on: Jan 15, 2018
5  * Author: obla999
6  */
7 
8 #include "time.hh"
9 
10 #include "logger.hh"
11 
12 LOGGER( timelog, "test_time" );
13 
14 int main()
15 {
16  LINFO( timelog, scarab::get_formatted_now() );
17  return 0;
18 }
19 
20 
int main()
Definition: test_time.cc:14
Contains the logger class and macros, based on Kasper's KLogger class.
#define LINFO(...)
Definition: logger.hh:362
std::string get_formatted_now()
Definition: time.cc:21
LOGGER(timelog, "test_time")