summaryrefslogtreecommitdiffstats
path: root/src/LashDriver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/LashDriver.cpp')
-rw-r--r--src/LashDriver.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/LashDriver.cpp b/src/LashDriver.cpp
index 759c718..147cb1c 100644
--- a/src/LashDriver.cpp
+++ b/src/LashDriver.cpp
@@ -97,10 +97,10 @@ void
LashDriver::handle_event(lash_event_t* ev)
{
LASH_Event_Type type = lash_event_get_type(ev);
- const char* c_str = lash_event_get_string(ev);
- string str = (c_str == NULL) ? "" : c_str;
+ const char* c_str = lash_event_get_string(ev);
+ string str = (c_str == NULL) ? "" : c_str;
- cout << "[LashDriver] LASH Event. Type = " << (unsigned int)type << ", string = " << str << "**********" << endl;
+ //cout << "[LashDriver] LASH Event. Type = " << (unsigned int)type << ", string = " << str << "**********" << endl;
switch (type) {
case LASH_Project_Add: