Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
4091ced5
Commit
4091ced5
authored
Jun 05, 2018
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
core: set default logger level to 'warning' in Release builds
should hide unnecessary 'info' messages
parent
b2cff440
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
logger.cpp
modules/core/src/logger.cpp
+7
-1
No files found.
modules/core/src/logger.cpp
View file @
4091ced5
...
@@ -21,7 +21,13 @@ namespace logging {
...
@@ -21,7 +21,13 @@ namespace logging {
static
LogLevel
parseLogLevelConfiguration
()
static
LogLevel
parseLogLevelConfiguration
()
{
{
static
cv
::
String
param_log_level
=
utils
::
getConfigurationParameterString
(
"OPENCV_LOG_LEVEL"
,
"INFO"
);
static
cv
::
String
param_log_level
=
utils
::
getConfigurationParameterString
(
"OPENCV_LOG_LEVEL"
,
#if defined NDEBUG
"WARNING"
#else
"INFO"
#endif
);
if
(
param_log_level
==
"DISABLED"
||
param_log_level
==
"disabled"
||
if
(
param_log_level
==
"DISABLED"
||
param_log_level
==
"disabled"
||
param_log_level
==
"0"
||
param_log_level
==
"OFF"
||
param_log_level
==
"off"
)
param_log_level
==
"0"
||
param_log_level
==
"OFF"
||
param_log_level
==
"off"
)
return
LOG_LEVEL_SILENT
;
return
LOG_LEVEL_SILENT
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment