Commit cb2701abb72393fac032d3aab79edcc59ecee299

Authored by Perry Werneck
1 parent 8ba7a76c
Exists in master and in 1 other branch develop

Fixing event trace.

src/core/getproperties.c
@@ -45,7 +45,7 @@ GVariant * ipc3270_get_property(GObject *object, const gchar *property_name, GEr @@ -45,7 +45,7 @@ GVariant * ipc3270_get_property(GObject *object, const gchar *property_name, GEr
45 45
46 errno = 0; // Just in case. 46 errno = 0; // Just in case.
47 47
48 - lib3270_trace_event(hSession,"GetProperty(%s) called on session %c",property_name,lib3270_get_session_id(hSession)); 48 + lib3270_trace_event(hSession,"GetProperty(%s) called on session %c\n",property_name,lib3270_get_session_id(hSession));
49 49
50 // Boolean properties 50 // Boolean properties
51 const LIB3270_INT_PROPERTY * boolprop = lib3270_get_boolean_properties_list(); 51 const LIB3270_INT_PROPERTY * boolprop = lib3270_get_boolean_properties_list();
src/core/methods.c
@@ -47,7 +47,7 @@ GVariant * ipc3270_method_call(GObject *object, const gchar *method_name, GVaria @@ -47,7 +47,7 @@ GVariant * ipc3270_method_call(GObject *object, const gchar *method_name, GVaria
47 size_t ix; 47 size_t ix;
48 H3270 * hSession = ipc3270_get_session(object); 48 H3270 * hSession = ipc3270_get_session(object);
49 49
50 - lib3270_trace_event(hSession,"Method %s called on session %c",method_name,lib3270_get_session_id(hSession)); 50 + lib3270_trace_event(hSession,"Method %s called on session %c\n",method_name,lib3270_get_session_id(hSession));
51 51
52 debug("%s(%s)",__FUNCTION__,method_name); 52 debug("%s(%s)",__FUNCTION__,method_name);
53 53
src/core/setproperties.c
@@ -44,7 +44,7 @@ gboolean ipc3270_set_property(GObject *object, const gchar *property_name, GVari @@ -44,7 +44,7 @@ gboolean ipc3270_set_property(GObject *object, const gchar *property_name, GVari
44 size_t ix; 44 size_t ix;
45 H3270 * hSession = ipc3270_get_session(object); 45 H3270 * hSession = ipc3270_get_session(object);
46 46
47 - lib3270_trace_event(hSession,"SetProperty(%s) called on session %c",property_name,lib3270_get_session_id(hSession)); 47 + lib3270_trace_event(hSession,"SetProperty(%s) called on session %c\n",property_name,lib3270_get_session_id(hSession));
48 48
49 // Boolean properties 49 // Boolean properties
50 const LIB3270_INT_PROPERTY * boolprop = lib3270_get_boolean_properties_list(); 50 const LIB3270_INT_PROPERTY * boolprop = lib3270_get_boolean_properties_list();