]> git.sesse.net Git - casparcg/commitdiff
Log level adjustments
authorHelge Norberg <helge.norberg@svt.se>
Tue, 17 Nov 2015 13:23:41 +0000 (14:23 +0100)
committerHelge Norberg <helge.norberg@svt.se>
Tue, 17 Nov 2015 13:23:41 +0000 (14:23 +0100)
core/thumbnail_generator.cpp
protocol/amcp/AMCPCommandQueue.cpp

index aded7f7fe0b36659a5bc9e34248702455ab9ca6e..2c1f9e8f2ab15058d78a39653894399d9c215cd3 100644 (file)
@@ -259,8 +259,8 @@ public:
                        }
                        catch (...)
                        {
-                               CASPAR_LOG_CURRENT_EXCEPTION_AT_LEVEL(debug);
-                               CASPAR_LOG(info) << L"Thumbnail producer failed to initialize for " << media_file_with_extension << L". Turn on log level debug to see more information.";
+                               CASPAR_LOG_CURRENT_EXCEPTION_AT_LEVEL(trace);
+                               CASPAR_LOG(info) << L"Thumbnail producer failed to initialize for " << media_file_with_extension << L". Turn on log level trace to see more information.";
                                return;
                        }
 
@@ -291,8 +291,8 @@ public:
                        }
                        catch (...)
                        {
-                               CASPAR_LOG_CURRENT_EXCEPTION_AT_LEVEL(debug);
-                               CASPAR_LOG(info) << L"Thumbnail producer failed to create thumbnail for " << media_file_with_extension << L". Turn on log level debug to see more information.";
+                               CASPAR_LOG_CURRENT_EXCEPTION_AT_LEVEL(trace);
+                               CASPAR_LOG(info) << L"Thumbnail producer failed to create thumbnail for " << media_file_with_extension << L". Turn on log level trace to see more information.";
                                return;
                        }
 
index 59198b969ad5456c24f1a83cfa334464ff8b68de..e4ca1f932f094d8e70a10290af228dc1f7a55e0e 100644 (file)
@@ -104,7 +104,7 @@ void AMCPCommandQueue::AddCommand(AMCPCommand::ptr_type pCurrentCommand)
                                }
 
                                if (pCurrentCommand->Execute())
-                                       CASPAR_LOG(info) << "Executed command (" << timer.elapsed() << "s): " << print;
+                                       CASPAR_LOG(debug) << "Executed command (" << timer.elapsed() << "s): " << print;
                                else
                                        CASPAR_LOG(warning) << "Failed to execute command: " << print;
                        }