X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/7a853280dc559b6a6d30e08daab964dcf64da62b..dba3eb8e520cf879da73c34ad8d4372eab2c50b6:/server/queue-ops.c diff --git a/server/queue-ops.c b/server/queue-ops.c index f2b3457..e513d16 100644 --- a/server/queue-ops.c +++ b/server/queue-ops.c @@ -154,7 +154,7 @@ int queue_move(struct queue_entry *q, int delta, const char *who) { } if(moved) { - info("user %s moved %s", who, q->id); + disorder_info("user %s moved %s", who, q->id); notify_queue_move(q->track, who); sprintf(buffer, "%d", moved); eventlog("moved", who, (char *)0); @@ -182,7 +182,7 @@ void queue_moveafter(struct queue_entry *target, queue_insert_entry(target, q); target = q; /* Log the individual tracks */ - info("user %s moved %s", who, q->id); + disorder_info("user %s moved %s", who, q->id); notify_queue_move(q->track, who); } /* Report that the queue changed to the event log */ @@ -191,7 +191,7 @@ void queue_moveafter(struct queue_entry *target, void queue_remove(struct queue_entry *which, const char *who) { if(who) { - info("user %s removed %s", who, which->id); + disorder_info("user %s removed %s", who, which->id); notify_queue_move(which->track, who); } eventlog("removed", which->id, who, (const char *)0);