Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/Process/Tools/ToolsInvoker.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ namespace ctrace
: m_config(std::move(config)), m_nbThreadPool(nbThreadPool == 0 ? 1 : nbThreadPool),
m_policy(policy), m_output_capture(output_capture)
{
coretrace::log(coretrace::Level::Info, "Initializing ToolInvoker...\n");
coretrace::log(coretrace::Level::Debug, "Initializing ToolInvoker...\n");

registerTool("cppcheck", std::make_unique<CppCheckToolImplementation>());
registerTool("flawfinder", std::make_unique<FlawfinderToolImplementation>());
Expand All @@ -133,7 +133,7 @@ namespace ctrace
if (m_config.global.ipc == "standardIO")
{
m_ipc = nullptr; // Use std::cout directely
coretrace::log(coretrace::Level::Info, "Using standardIO for IPC.\n");
coretrace::log(coretrace::Level::Debug, "Using standardIO for IPC.\n");
}
else
{
Expand Down
4 changes: 2 additions & 2 deletions src/App/Runner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ namespace ctrace
if (config.global.hasAsync == std::launch::async)
{
coretrace::set_thread_safe(true);
coretrace::log(coretrace::Level::Info, "Asynchronous execution enabled.\n");
coretrace::log(coretrace::Level::Debug, "Asynchronous execution enabled.\n");
}

coretrace::log(coretrace::Level::Debug, "Verbose mode enabled.\n");
Expand Down Expand Up @@ -70,7 +70,7 @@ namespace ctrace

for (const auto& file : sourceFiles)
{
coretrace::log(coretrace::Level::Info, "Processing file: {}\n", file);
coretrace::log(coretrace::Level::Debug, "Processing file: {}\n", file);
}

if (config.global.hasStaticAnalysis)
Expand Down
Loading