Skip to content

Commit

Permalink
Log messages for banked event packets are now at debug level
Browse files Browse the repository at this point in the history
Refs #6757
  • Loading branch information
rgmiller committed Mar 21, 2013
1 parent 8c85d54 commit 15aae5f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ namespace DataHandling
// TODO: Create a log with the pulse time and charge!! (TimeSeriesProperties)

// Append the events
g_log.information() << "----- Pulse ID: " << pkt.pulseId() << " -----" << std::endl;
g_log.debug() << "----- Pulse ID: " << pkt.pulseId() << " -----" << std::endl;
{
Poco::ScopedLock<Poco::FastMutex> scopedLock(m_mutex) ;

Expand Down Expand Up @@ -405,8 +405,8 @@ namespace DataHandling
}
} // mutex automatically unlocks here

g_log.information() << "Total Events: " << totalEvents << std::endl;
g_log.information() << "-------------------------------" << std::endl;
g_log.debug() << "Total Events: " << totalEvents << std::endl;
g_log.debug() << "-------------------------------" << std::endl;

return false;
}
Expand Down

0 comments on commit 15aae5f

Please sign in to comment.