summaryrefslogtreecommitdiffstats
path: root/polyp/cli.c
diff options
context:
space:
mode:
Diffstat (limited to 'polyp/cli.c')
-rw-r--r--polyp/cli.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/polyp/cli.c b/polyp/cli.c
index 6fd2c238..09e9855d 100644
--- a/polyp/cli.c
+++ b/polyp/cli.c
@@ -42,6 +42,7 @@
#include "cli-text.h"
#include "cli-command.h"
#include "xmalloc.h"
+#include "log.h"
struct pa_cli {
struct pa_core *core;
@@ -103,7 +104,7 @@ static void client_kill(struct pa_client *client) {
assert(client && client->userdata);
c = client->userdata;
- fprintf(stderr, "CLI client killed.\n");
+ pa_log(__FILE__": CLI client killed.\n");
if (c->defer_kill)
c->kill_requested = 1;
else {
@@ -119,7 +120,7 @@ static void line_callback(struct pa_ioline *line, const char *s, void *userdata)
assert(line && c);
if (!s) {
- fprintf(stderr, "CLI got EOF from user.\n");
+ pa_log(__FILE__": CLI got EOF from user.\n");
if (c->eof_callback)
c->eof_callback(c, c->userdata);