aboutsummaryrefslogtreecommitdiffstats
path: root/samsung-ipc
diff options
context:
space:
mode:
authorSimon Busch <morphis@gravedo.de>2012-08-28 19:10:44 +0200
committerSimon Busch <morphis@gravedo.de>2012-08-28 19:10:44 +0200
commitc2509569de22560f8bd5eabdbdebf40eba030a29 (patch)
tree10b986270cc62ee96c763b76d403a809640afa9b /samsung-ipc
parentc4f9aa62257da074983aff73924908bc902fe8d2 (diff)
downloadexternal_libsamsung-ipc-c2509569de22560f8bd5eabdbdebf40eba030a29.zip
external_libsamsung-ipc-c2509569de22560f8bd5eabdbdebf40eba030a29.tar.gz
external_libsamsung-ipc-c2509569de22560f8bd5eabdbdebf40eba030a29.tar.bz2
Reformat log output for received/sent messages
Diffstat (limited to 'samsung-ipc')
-rw-r--r--samsung-ipc/ipc_util.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/samsung-ipc/ipc_util.c b/samsung-ipc/ipc_util.c
index e55dcee..9645206 100644
--- a/samsung-ipc/ipc_util.c
+++ b/samsung-ipc/ipc_util.c
@@ -47,6 +47,7 @@ void ipc_client_log_recv(struct ipc_client *client,
ipc_client_log(client, "==== FMT DATA DUMP ====");
ipc_client_hex_dump(client, (void *) response->data,
response->length > 0x100 ? 0x100 : response->length);
+ ipc_client_log(client, "=======================");
}
#endif
break;
@@ -59,12 +60,11 @@ void ipc_client_log_recv(struct ipc_client *client,
ipc_client_log(client, "==== RFS DATA DUMP ====");
ipc_client_hex_dump(client, (void *) response->data,
response->length > 0x100 ? 0x100 : response->length);
+ ipc_client_log(client, "=======================");
}
#endif
break;
}
-
- ipc_client_log(client, "");
}
void ipc_client_log_send(struct ipc_client *client,
@@ -80,6 +80,7 @@ void ipc_client_log_send(struct ipc_client *client,
ipc_client_log(client, "==== FMT DATA DUMP ====");
ipc_client_hex_dump(client, (void *) request->data,
request->length > 0x100 ? 0x100 : request->length);
+ ipc_client_log(client, "=======================");
}
#endif
break;
@@ -92,12 +93,11 @@ void ipc_client_log_send(struct ipc_client *client,
ipc_client_log(client, "==== RFS DATA DUMP ====");
ipc_client_hex_dump(client, (void *) request->data,
request->length > 0x100 ? 0x100 : request->length);
+ ipc_client_log(client, "=======================");
}
#endif
break;
}
-
- ipc_client_log(client, "");
}
const char *ipc_response_type_to_str(int type) {