Skip to content

Commit b2e89b0

Browse files
author
Francesco Mazzaschi
committed
Fix log printout
1 parent c65008e commit b2e89b0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Generators/include/Generators/NuclCoalescencePythia8.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,7 @@ bool coalPythia8(Pythia8::Event& event, int charge, int pdgCode, float mass, boo
105105
}
106106
}
107107
}
108-
LOG(debug)
109-
"Adding a " << (charge * 2 - 1) * pdgCode << " with p = " << p.px() << ", " << p.py() << ", " << p.pz() << ", E = " << p.e();
108+
LOG(debug) << "Adding a " << (charge * 2 - 1) * pdgCode << " with p = " << p.px() << ", " << p.py() << ", " << p.pz() << ", E = " << p.e();
110109
return true;
111110
}
112111

0 commit comments

Comments
 (0)