mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-12-18 08:56:40 -05:00
implement proper logging
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@179 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
57e473b61c
commit
6c4fd62040
50 changed files with 416 additions and 225 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue