Skip to content

Commit 4724092

Browse files
committed
Remove println
1 parent 6c994a8 commit 4724092

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Core/Application/Session/Session.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ class SessionTraceDB : public SessionBackEnd
234234

235235
bool insertRow(const std::string& statement)
236236
{
237-
std::cout << "DB consume: " << statement << std::endl;
237+
//std::cout << "DB consume: " << statement << std::endl;
238238
//TODO: use Parameters
239239
std::string dequoted(statement);
240240
dequoted.erase(std::remove(dequoted.begin(), dequoted.end(), '\"'), dequoted.end());
@@ -281,7 +281,7 @@ SessionHandle SessionBuilder::build(const boost::filesystem::path& file)
281281
{
282282
std::cout << "Error creating DB session back end: " << e.what() << std::endl;
283283
}
284-
284+
285285
try
286286
{
287287
boost::filesystem::path textFile(file);

0 commit comments

Comments
 (0)