[player] Remove some debug log messages
This commit is contained in:
parent
00d4148a90
commit
a824f73779
14
src/player.c
14
src/player.c
|
@ -1883,8 +1883,6 @@ device_streaming_cb(struct output_device *device, struct output_session *session
|
|||
{
|
||||
int ret;
|
||||
|
||||
DPRINTF(E_DBG, L_PLAYER, "CALLBACK streaming_cb %d\n", status);
|
||||
|
||||
ret = device_check(device);
|
||||
if (ret < 0)
|
||||
{
|
||||
|
@ -1929,8 +1927,6 @@ device_streaming_cb(struct output_device *device, struct output_session *session
|
|||
static void
|
||||
device_command_cb(struct output_device *device, struct output_session *session, enum output_device_state status)
|
||||
{
|
||||
DPRINTF(E_DBG, L_PLAYER, "CALLBACK command_cb %d %d\n", status, cur_cmd->output_requests_pending);
|
||||
|
||||
cur_cmd->output_requests_pending--;
|
||||
|
||||
outputs_status_cb(session, device_streaming_cb);
|
||||
|
@ -1954,8 +1950,6 @@ device_shutdown_cb(struct output_device *device, struct output_session *session,
|
|||
{
|
||||
int ret;
|
||||
|
||||
DPRINTF(E_DBG, L_PLAYER, "CALLBACK shutdown_cb %d\n", status);
|
||||
|
||||
cur_cmd->output_requests_pending--;
|
||||
|
||||
if (output_sessions)
|
||||
|
@ -1990,8 +1984,6 @@ device_shutdown_cb(struct output_device *device, struct output_session *session,
|
|||
static void
|
||||
device_lost_cb(struct output_device *device, struct output_session *session, enum output_device_state status)
|
||||
{
|
||||
DPRINTF(E_DBG, L_PLAYER, "CALLBACK lost_cb %d\n", status);
|
||||
|
||||
/* We lost that device during startup for some reason, not much we can do here */
|
||||
if (status == OUTPUT_STATE_FAILED)
|
||||
DPRINTF(E_WARN, L_PLAYER, "Failed to stop lost device\n");
|
||||
|
@ -2005,8 +1997,6 @@ device_activate_cb(struct output_device *device, struct output_session *session,
|
|||
struct timespec ts;
|
||||
int ret;
|
||||
|
||||
DPRINTF(E_DBG, L_PLAYER, "CALLBACK activate_cb %d %d\n", status, OUTPUT_STATE_F_STARTUP);
|
||||
|
||||
cur_cmd->output_requests_pending--;
|
||||
|
||||
ret = device_check(device);
|
||||
|
@ -2078,8 +2068,6 @@ device_probe_cb(struct output_device *device, struct output_session *session, en
|
|||
{
|
||||
int ret;
|
||||
|
||||
DPRINTF(E_DBG, L_PLAYER, "CALLBACK probe_cb %d\n", status);
|
||||
|
||||
cur_cmd->output_requests_pending--;
|
||||
|
||||
ret = device_check(device);
|
||||
|
@ -2127,8 +2115,6 @@ device_restart_cb(struct output_device *device, struct output_session *session,
|
|||
{
|
||||
int ret;
|
||||
|
||||
DPRINTF(E_DBG, L_PLAYER, "CALLBACK restart_cb %d %d\n", status, OUTPUT_STATE_F_STARTUP);
|
||||
|
||||
cur_cmd->output_requests_pending--;
|
||||
|
||||
ret = device_check(device);
|
||||
|
|
Loading…
Reference in New Issue