log.cpp 125 B

12345678
  1. #include "log.hpp"
  2. namespace xios
  3. {
  4. CLog info("info") ;
  5. CLog report("report") ;
  6. CLog error("error", cerr.rdbuf()) ;
  7. }