Change log level

This commit is contained in:
badaix 2022-01-06 23:22:45 +01:00
parent b4a41e0fd7
commit 3e0d6266a7

View file

@ -1,6 +1,6 @@
/***
This file is part of snapcast
Copyright (C) 2014-2020 Johannes Pohl
Copyright (C) 2014-2022 Johannes Pohl
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@ -16,7 +16,13 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
***/
// prototype/interface header file
#include "coreaudio_player.hpp"
// local headers
#include "aixlog.hpp"
// 3rd party headers
#include <CoreAudio/CoreAudio.h>
namespace player
@ -199,7 +205,7 @@ void CoreAudioPlayer::initAudioQueue()
callback(this, queue, buffers[i]);
}
LOG(ERROR, LOG_TAG) << "CoreAudioPlayer::worker\n";
LOG(DEBUG, LOG_TAG) << "CoreAudioPlayer::worker\n";
AudioQueueCreateTimeline(queue, &timeLine_);
AudioQueueStart(queue, NULL);
CFRunLoopRun();