Closed mo-joshuacolclough closed 8 months ago
Debug output can get cluttered with function name prints. It seems more appropriate that these are trace prints.
trace
(find . -type f -exec sed -i 's/oops::Log::debug() << "\([A-Za-z]\+\)::\([A-Za-z]\+\)()/oops::Log::trace() << "\1::\2()/g' {} \;)
find . -type f -exec sed -i 's/oops::Log::debug() << "\([A-Za-z]\+\)::\([A-Za-z]\+\)()/oops::Log::trace() << "\1::\2()/g' {} \;
Resolves #39
Description
Debug output can get cluttered with function name prints. It seems more appropriate that these are
trace
prints.(
find . -type f -exec sed -i 's/oops::Log::debug() << "\([A-Za-z]\+\)::\([A-Za-z]\+\)()/oops::Log::trace() << "\1::\2()/g' {} \;
)Resolves #39