Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Corryvreckan
Corryvreckan
Commits
9efd8f39
Commit
9efd8f39
authored
Nov 07, 2018
by
Simon Spannagel
Browse files
Module: remove TRACE debug output
parent
884c64d9
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/core/module/Module.cpp
View file @
9efd8f39
...
...
@@ -15,16 +15,8 @@ Module::Module(Configuration config, std::shared_ptr<Detector> detector)
Module
::~
Module
()
{}
Module
::
Module
(
Configuration
config
,
std
::
vector
<
std
::
shared_ptr
<
Detector
>>
detectors
)
:
m_config
(
std
::
move
(
config
))
{
m_detectors
=
detectors
;
IFLOG
(
TRACE
)
{
std
::
stringstream
det
;
for
(
auto
&
d
:
m_detectors
)
{
det
<<
d
->
name
()
<<
", "
;
}
LOG
(
TRACE
)
<<
"Module determined to run on detectors: "
<<
det
.
str
();
}
}
Module
::
Module
(
Configuration
config
,
std
::
vector
<
std
::
shared_ptr
<
Detector
>>
detectors
)
:
m_config
(
std
::
move
(
config
)),
m_detectors
(
std
::
move
(
detectors
))
{}
/**
* @throws InvalidModuleActionException If this method is called from the constructor
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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