-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[core_c] Move implementation to lang folder. #1904
Changes from 9 commits
499bfb5
cef038f
f496841
dc63ba3
0a724a5
4343b05
5c8aab5
42cc3b8
d6cd93d
b6ba647
dad8909
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,6 +1,6 @@ | ||||||
/* ========================= eCAL LICENSE ================================= | ||||||
* | ||||||
* Copyright (C) 2016 - 2019 Continental Corporation | ||||||
* Copyright (C) 2016 - 2025 Continental Corporation | ||||||
* | ||||||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||||||
* you may not use this file except in compliance with the License. | ||||||
|
@@ -211,30 +211,30 @@ void LogWidget::getEcalLogs() | |||||
|
||||||
void LogWidget::updateLogLevelFilter() | ||||||
{ | ||||||
int log_level_filter = eCAL_Logging_eLogLevel::log_level_none; | ||||||
int log_level_filter = eCAL::Logging::eLogLevel::log_level_none; | ||||||
|
||||||
if (ui_.debug_checkbox->isChecked()) | ||||||
{ | ||||||
log_level_filter |= (eCAL_Logging_eLogLevel::log_level_debug1 | eCAL_Logging_eLogLevel::log_level_debug2 | eCAL_Logging_eLogLevel::log_level_debug3 | eCAL_Logging_eLogLevel::log_level_debug4); | ||||||
log_level_filter |= (eCAL::Logging::eLogLevel::log_level_debug1 | eCAL::Logging::eLogLevel::log_level_debug2 | eCAL::Logging::eLogLevel::log_level_debug3 | eCAL::Logging::eLogLevel::log_level_debug4); | ||||||
} | ||||||
if (ui_.info_checkbox->isChecked()) | ||||||
{ | ||||||
log_level_filter |= eCAL_Logging_eLogLevel::log_level_info; | ||||||
log_level_filter |= eCAL::Logging::eLogLevel::log_level_info; | ||||||
} | ||||||
if (ui_.warning_checkbox->isChecked()) | ||||||
{ | ||||||
log_level_filter |= eCAL_Logging_eLogLevel::log_level_warning; | ||||||
log_level_filter |= eCAL::Logging::eLogLevel::log_level_warning; | ||||||
} | ||||||
if (ui_.error_checkbox->isChecked()) | ||||||
{ | ||||||
log_level_filter |= eCAL_Logging_eLogLevel::log_level_error; | ||||||
log_level_filter |= eCAL::Logging::eLogLevel::log_level_error; | ||||||
} | ||||||
if (ui_.fatal_checkbox->isChecked()) | ||||||
{ | ||||||
log_level_filter |= eCAL_Logging_eLogLevel::log_level_fatal; | ||||||
log_level_filter |= eCAL::Logging::eLogLevel::log_level_fatal; | ||||||
} | ||||||
|
||||||
log_proxy_model_->setLogLevelFilter((eCAL_Logging_eLogLevel)log_level_filter); | ||||||
log_proxy_model_->setLogLevelFilter((eCAL::Logging::eLogLevel)log_level_filter); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '11' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is false ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking false branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:233: The value 11 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '11' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '12' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is false ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking false branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:233: The value 12 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '12' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '13' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is false ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking false branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:233: The value 13 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '13' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '14' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is false ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking false branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:233: The value 14 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '14' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '15' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is false ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking false branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:233: The value 15 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '15' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '240' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is true ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking true branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:217: The value 240 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '240' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '241' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is true ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking true branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:221: The value 241 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '241' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '242' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is true ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking true branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:225: The value 242 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '242' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '243' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is true ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking true branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:225: The value 243 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '243' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '244' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is true ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking true branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:229: The value 244 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '244' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '245' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is true ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking true branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:229: The value 245 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '245' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '246' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is true ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking true branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:229: The value 246 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '246' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '247' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is true ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking true branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:229: The value 247 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '247' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '248' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is true ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking true branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:233: The value 248 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '248' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '249' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is true ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking true branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:233: The value 249 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '249' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '250' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is true ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking true branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:233: The value 250 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '250' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '251' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is true ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking true branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:233: The value 251 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '251' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '252' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is true ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking true branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:233: The value 252 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '252' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '253' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is true ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking true branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:233: The value 253 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '253' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '254' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is true ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking true branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:233: The value 254 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '254' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '3' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is false ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking false branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:225: The value 3 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '3' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '5' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is false ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking false branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:229: The value 5 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '5' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '6' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is false ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking false branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:229: The value 6 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '6' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '7' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is false ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking false branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:229: The value 7 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '7' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: The value '9' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange] ^ Additional contextecal/core/include/ecal/ecal_log_level.h:36: enum declared here enum eLogLevel
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter' ;
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter' ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is false ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking false branch ^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is false }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking false branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is true }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking true branch }
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:233: The value 9 is assigned to 'log_level_filter' {
^ app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '9' provided to the cast expression is not in the valid range of values for 'eLogLevel' ^ |
||||||
} | ||||||
|
||||||
void LogWidget::setPaused(bool paused) | ||||||
|
@@ -402,11 +402,11 @@ void LogWidget::setLogLevelFilter(int log_level) | |||||
ui_.error_checkbox ->blockSignals(true); | ||||||
ui_.fatal_checkbox ->blockSignals(true); | ||||||
|
||||||
ui_.debug_checkbox ->setChecked(log_level & (eCAL_Logging_eLogLevel::log_level_debug1 | eCAL_Logging_eLogLevel::log_level_debug2 | eCAL_Logging_eLogLevel::log_level_debug3 | eCAL_Logging_eLogLevel::log_level_debug4)); | ||||||
ui_.info_checkbox ->setChecked(log_level & eCAL_Logging_eLogLevel::log_level_info); | ||||||
ui_.warning_checkbox->setChecked(log_level & eCAL_Logging_eLogLevel::log_level_warning); | ||||||
ui_.error_checkbox ->setChecked(log_level & eCAL_Logging_eLogLevel::log_level_error); | ||||||
ui_.fatal_checkbox ->setChecked(log_level & eCAL_Logging_eLogLevel::log_level_fatal); | ||||||
ui_.debug_checkbox ->setChecked(log_level & (eCAL::Logging::eLogLevel::log_level_debug1 | eCAL::Logging::eLogLevel::log_level_debug2 | eCAL::Logging::eLogLevel::log_level_debug3 | eCAL::Logging::eLogLevel::log_level_debug4)); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: implicit conversion 'int' -> 'bool' [readability-implicit-bool-conversion]
Suggested change
|
||||||
ui_.info_checkbox ->setChecked(log_level & eCAL::Logging::eLogLevel::log_level_info); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: implicit conversion 'int' -> 'bool' [readability-implicit-bool-conversion]
Suggested change
|
||||||
ui_.warning_checkbox->setChecked(log_level & eCAL::Logging::eLogLevel::log_level_warning); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: implicit conversion 'int' -> 'bool' [readability-implicit-bool-conversion]
Suggested change
|
||||||
ui_.error_checkbox ->setChecked(log_level & eCAL::Logging::eLogLevel::log_level_error); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: implicit conversion 'int' -> 'bool' [readability-implicit-bool-conversion]
Suggested change
|
||||||
ui_.fatal_checkbox ->setChecked(log_level & eCAL::Logging::eLogLevel::log_level_fatal); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: implicit conversion 'int' -> 'bool' [readability-implicit-bool-conversion]
Suggested change
|
||||||
|
||||||
updateLogLevelFilter(); | ||||||
|
||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: The value '10' provided to the cast expression is not in the valid range of values for 'eLogLevel' [clang-analyzer-optin.core.EnumCastOutOfRange]
Additional context
ecal/core/include/ecal/ecal_log_level.h:36: enum declared here
enum eLogLevel ^
app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:390: Calling 'LogWidget::setLogLevelFilter'
app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:410: Calling 'LogWidget::updateLogLevelFilter'
app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Assuming the condition is false
app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:215: Taking false branch
app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Assuming the condition is false
app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:219: Taking false branch
app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Assuming the condition is true
app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:223: Taking true branch
app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Assuming the condition is false
app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:227: Taking false branch
app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Assuming the condition is true
app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:231: Taking true branch
app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:233: The value 10 is assigned to 'log_level_filter'
app/mon/mon_gui/src/widgets/log_widget/log_widget.cpp:236: The value '10' provided to the cast expression is not in the valid range of values for 'eLogLevel'