laforge
/
openbts-osmo
Archived
1
0
Fork 0

common libs: Lower log level for "setting log path to " message.

I don't see real value of this message, while it's been printed to the screen like something very important.

(cherry picked from commit 3f3c9b2d2599a672f08624b3081c2c687cbba4d4)
This commit is contained in:
Alexander Chemeris 2010-11-22 22:55:54 +03:00
parent 80963d1ed9
commit e2e267dcca
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ void gSetLogFile(FILE *wFile)
bool gSetLogFile(const char *name)
{
assert(name);
LOG(FORCE) << "setting log path to " << name;
LOG(DEEPDEBUG) << "setting log path to " << name;
bool retVal = true;
gLogLock.lock();
FILE* newLoggingFile = fopen(name,"a+");