TCF Agent: fixed: print_not_stopped_contexts() output is truncated
diff --git a/agent/tcf/services/breakpoints.c b/agent/tcf/services/breakpoints.c
index 4589e41..a1a7752 100644
--- a/agent/tcf/services/breakpoints.c
+++ b/agent/tcf/services/breakpoints.c
@@ -291,10 +291,11 @@
     Context * grp;
     if (is_all_stopped(ctx)) return 1;
     grp = context_get_group(ctx, CONTEXT_GROUP_STOP);
+    fprintf(stderr, "Context group '%s':\n", grp->name ? grp->name : grp->id);
     for (l = context_root.next; l != &context_root; l = l->next) {
         Context * c = ctxl2ctxp(l);
         if (context_get_group(c, CONTEXT_GROUP_STOP) != grp) continue;
-        printf("ID %s, stopped %d, exiting %d, exited %d, signal %d\n",
+        fprintf(stderr, "  ID %s, stopped %d, exiting %d, exited %d, signal %d\n",
             c->id, c->stopped, c->exiting, c->exited, c->signal);
     }
     return 0;