diff --git a/emper/Debug.hpp b/emper/Debug.hpp
index e265b7df41b7b563f87e60fc23db49bf233c5f82..ec59dad0602a7831a8e0665aa26026a8026a345a 100644
--- a/emper/Debug.hpp
+++ b/emper/Debug.hpp
@@ -23,7 +23,7 @@
 
 #endif
 
-#define LOGI(x) do { std::stringstream sst; sst << x; logI(sst.str()); } while (false)
+#define LOGI(x) do { std::cerr << "Info: " << x << std::endl; } while (false)
 
 #define ABORT(x) do { std::stringstream sst; sst << x; logI(sst.str()); abort(); } while (false)