From: Helge Norberg Date: Fri, 4 Dec 2015 15:39:06 +0000 (+0100) Subject: Move most template host logging that is not interesting during day to day operation... X-Git-Tag: 2.1.0_Beta1~147 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=8cdc6ca0a980f8809d5ae51948034a8a62cb21c1;p=casparcg Move most template host logging that is not interesting during day to day operation to debug level instead of info. --- diff --git a/modules/flash/producer/FlashAxContainer.cpp b/modules/flash/producer/FlashAxContainer.cpp index c0da13a5b..d011cc419 100644 --- a/modules/flash/producer/FlashAxContainer.cpp +++ b/modules/flash/producer/FlashAxContainer.cpp @@ -611,12 +611,12 @@ void STDMETHODCALLTYPE FlashAxContainer::OnFlashCall(BSTR request) } else if(str.find(L"OnCommand") != std::wstring::npos) { //this is how templatehost 1.8 reports that a command has been received - CASPAR_LOG(info) << print_() << L" [command] " << str; + CASPAR_LOG(debug) << print_() << L" [command] " << str; bCallSuccessful_ = true; } else if(str.find(L"Activity") != std::wstring::npos) { - CASPAR_LOG(info) << print_() << L" [activity] " << str; + CASPAR_LOG(debug) << print_() << L" [activity] " << str; //this is how templatehost 1.7 reports that a command has been received if(str.find(L"Command recieved") != std::wstring::npos)