Merge pull request #1003 from Linwood-F/1002-demote-auth-message-to-debug

Demote user auth info message to debug
pull/1007/head
Isaac Connor 2015-08-10 08:46:19 -04:00
commit b6eae38c05
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ User *zmLoadAuthUser( const char *auth, bool use_remote_addr )
{
// We have a match
User *user = new User( dbrow );
Info( "Authenticated user '%s'", user->getUsername() );
Debug(1, "Authenticated user '%s'", user->getUsername() );
return( user );
}
}