Skip to content
Snippets Groups Projects
Commit a749ae2c authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[A] Remove extra newline in DBUG message.

parent bf78d717
No related branches found
No related tags found
No related merge requests found
...@@ -192,7 +192,7 @@ void ProjectData::parseProcessVariables( ...@@ -192,7 +192,7 @@ void ProjectData::parseProcessVariables(
void ProjectData::parseProcesses(ConfigTree const& processes_config) void ProjectData::parseProcesses(ConfigTree const& processes_config)
{ {
DBUG("Reading processes:\n"); DBUG("Reading processes:");
for (auto pc_it : processes_config) { for (auto pc_it : processes_config) {
ConfigTree const& process_config = pc_it.second; ConfigTree const& process_config = pc_it.second;
...@@ -209,7 +209,7 @@ void ProjectData::parseProcesses(ConfigTree const& processes_config) ...@@ -209,7 +209,7 @@ void ProjectData::parseProcesses(ConfigTree const& processes_config)
void ProjectData::parseOutput(ConfigTree const& output_config, void ProjectData::parseOutput(ConfigTree const& output_config,
std::string const& path) std::string const& path)
{ {
DBUG("Parse output configuration:\n"); DBUG("Parse output configuration:");
auto const file = output_config.get_optional<std::string>("file"); auto const file = output_config.get_optional<std::string>("file");
if (!file) { if (!file) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment