Log message cleanup

Removed std::endl from log messages.

Signed-off-by: Ben Tyner <ben.tyner@ibm.com>
Change-Id: Iec49cfb9d1c6fef8bdea2c88e203c45093e2973d
diff --git a/attn/ti_handler.cpp b/attn/ti_handler.cpp
index cca2a66..b991b6e 100644
--- a/attn/ti_handler.cpp
+++ b/attn/ti_handler.cpp
@@ -1,8 +1,6 @@
 #include <logging.hpp>
 #include <sdbusplus/bus.hpp>
 
-#include <sstream>
-
 namespace attn
 {
 
@@ -10,9 +8,7 @@
 void tiHandler()
 {
     // trace message
-    std::stringstream ss;
-    ss << "start host diagnostic mode service" << std::endl;
-    log<level::INFO>(ss.str().c_str());
+    log<level::INFO>("start host diagnostic mode service");
 
     // Use the systemd service manager object interface to call the start unit
     // method with the obmc-host-diagnostic-mode target.