Skip to content
Snippets Groups Projects
Commit a52d4f57 authored by Birte Kehr's avatar Birte Kehr
Browse files

Replacing popins2 by popins4snake in status messages.

parent 811a2af7
No related merge requests found
/*!
* \file src/util.h
* \brief Header for popins2 utility functions
* \brief Header for popins4snake utility functions
*
*/
#ifndef POPINS2_UTIL_H_
......@@ -51,7 +51,7 @@ inline void printTimeStatus(const char * message){
time_t now = time(0);
struct tm tstruct;
tstruct = *localtime(&now);
strftime(timestamp, sizeof(timestamp), "[popins2 %Y-%m-%d %X] ", &tstruct);
strftime(timestamp, sizeof(timestamp), "[popins4snake %Y-%m-%d %X] ", &tstruct);
// Print time and message.
std::cerr << timestamp << message << std::endl;
......@@ -355,7 +355,7 @@ void printStatus(const char * message)
time_t now = time(0);
struct tm tstruct;
tstruct = *localtime(&now);
strftime(timestamp, sizeof(timestamp), "[popins2 %Y-%m-%d %X] ", &tstruct);
strftime(timestamp, sizeof(timestamp), "[popins4snake %Y-%m-%d %X] ", &tstruct);
// Print time and message.
std::cerr << timestamp << message << std::endl;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment