Skip to content

Commit

Permalink
Add newline to the ldmsd_stream_subscribe output
Browse files Browse the repository at this point in the history
This change makes it easier for users and software to parse subscribed
data.
  • Loading branch information
tom95858 committed Dec 14, 2020
1 parent 195fdcd commit 0733170
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ldms/src/ldmsd/test/ldmsd_stream_subscribe.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ static int stream_recv_cb(ldmsd_stream_client_t c, void *ctxt,
else
msglog("EVENT:{\"type\":\"json\",\"size\":%d,\"event\":", msg_len);
msglog(msg);
msglog("}");
msglog("}\n");
return 0;
}

Expand Down

0 comments on commit 0733170

Please sign in to comment.