Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
dcdb
dcdb
Commits
de31d03b
Commit
de31d03b
authored
May 31, 2019
by
Michael Ott
Browse files
Fix compilation error
parent
2888907f
Changes
1
Show whitespace changes
Inline
Side-by-side
analytics/includes/AnalyzerConfiguratorTemplate.h
View file @
de31d03b
...
...
@@ -111,7 +111,7 @@ public:
*/
void
printConfig
(
LOG_LEVEL
ll
)
final
{
LOG_VAR
(
ll
)
<<
" General: "
;
LOG_VAR
(
ll
)
<<
" MQTT-Prefix: "
<<
(
_mqttPrefix
!=
""
?
_mqttPrefix
:
"DEFAULT"
);
LOG_VAR
(
ll
)
<<
" MQTT-Prefix: "
<<
(
_mqttPrefix
!=
""
?
_mqttPrefix
:
std
::
string
(
"DEFAULT"
)
)
;
LOG_VAR
(
ll
)
<<
" CacheInterval: "
<<
_cacheInterval
/
1000
<<
" [s]"
;
//prints plugin specific configurator attributes and entities if present
...
...
Write
Preview
Supports
Markdown
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