A bit more log detail about connections comming and going

git-svn-id: svn://svn.berlios.de/openocd/trunk@2410 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
duane 2009-06-28 02:54:19 +00:00
parent 9ab9786f67
commit 261e04466d
1 changed files with 8 additions and 0 deletions

View File

@ -803,6 +803,10 @@ int gdb_new_connection(connection_t *connection)
target_call_event_callbacks(gdb_service->target, TARGET_EVENT_GDB_ATTACH);
gdb_actual_connections++;
LOG_DEBUG("New GDB Connection: %d, Target %s, state: %s",
gdb_actual_connections,
gdb_service->target->cmd_name,
target_state_name(gdb_service->target));
return ERROR_OK;
}
@ -813,6 +817,10 @@ int gdb_connection_closed(connection_t *connection)
gdb_connection_t *gdb_connection = connection->priv;
gdb_actual_connections--;
LOG_DEBUG("GDB Close, Target: %s, state: %s, gdb_actual_connections=%d",
gdb_service->target->cmd_name,
target_state_name(gdb_service->target),
gdb_actual_connections);
/* see if an image built with vFlash commands is left */
if (gdb_connection->vflash_image)