Procházet zdrojové kódy

Fixed logging file/line! See BUGZ_LOG()

Steve Thielemann před 3 roky
rodič
revize
d44b2df187
2 změnil soubory, kde provedl 10 přidání a 5 odebrání
  1. 5 4
      session.cpp
  2. 5 1
      session.h

+ 5 - 4
session.cpp

@@ -75,8 +75,9 @@ void session::start(void) {
   // BOOST_LOG_NAMED_SCOPE();
 
   // If I want the file and line number information, here's how to do it:
-  BOOST_LOG_TRIVIAL(info) << boost::format("(%1%:%2%) ") % __FILE__ % __LINE__
-                          << "session";
+  // BUGZ_LOG(info) << boost::format("(%1%:%2%) ") % __FILE__ % __LINE__
+  BOOST_LOG_TRIVIAL(info) << "session()";
+  BUGZ_LOG(info) << "session::start()";
   auto self(shared_from_this());
   // read_buffer.reserve(1024);
   // do_write("Welcome!\n");
@@ -84,8 +85,8 @@ void session::start(void) {
 }
 
 session::~session() {
-  // BOOST_LOG_NAMED_SCOPE("session");
-  BOOST_LOG_TRIVIAL(info) << "~session destructed";
+  BOOST_LOG_TRIVIAL(info) << "~session";
+  BUGZ_LOG(info) << "~session destructed";
 }
 
 void session::parse_auth(void) {

+ 5 - 1
session.h

@@ -73,7 +73,7 @@ private:
   // FOR NOW:  These will go into the director
   bool show_client = true;
   bool talk_direct = true;
-  
+
   /**
    * The client's socket
    */
@@ -184,4 +184,8 @@ private:
   std::string port_;
 };
 
+#define BUGZ_LOG(severity) BOOST_LOG_TRIVIAL(severity) << "(" << __FILE__ << ":" << __LINE__ << ") "
+
+// BOOST_LOG_TRIVIAL(fatal)
+
 #endif