Skip to content

Commit

Permalink
Log prefix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
arr2036 committed Mar 18, 2016
1 parent d6811f9 commit 3e0280a
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/main/log.c
Expand Up @@ -50,17 +50,17 @@ static bool rate_limit = true; //!< Whether repeated log entries should be rate
/** Maps log categories to message prefixes
*/
static const FR_NAME_NUMBER levels[] = {
{ ": Debug: ", L_DBG },
{ ": Auth: ", L_AUTH },
{ ": Proxy: ", L_PROXY },
{ ": Info: ", L_INFO },
{ ": Warning: ", L_WARN },
{ ": Acct: ", L_ACCT },
{ ": Error: ", L_ERR },
{ ": WARNING: ", L_DBG_WARN },
{ ": ERROR: ", L_DBG_ERR },
{ ": WARNING: ", L_DBG_WARN_REQ },
{ ": ERROR: ", L_DBG_ERR_REQ },
{ ": Debug : ", L_DBG },
{ ": Auth : ", L_AUTH },
{ ": Proxy : ", L_PROXY },
{ ": Info : ", L_INFO },
{ ": Warning : ", L_WARN },
{ ": Acct : ", L_ACCT },
{ ": Error : ", L_ERR },
{ ": WARNING : ", L_DBG_WARN },
{ ": ERROR : ", L_DBG_ERR },
{ ": WARNING : ", L_DBG_WARN_REQ },
{ ": ERROR : ", L_DBG_ERR_REQ },
{ NULL, 0 }
};

Expand Down

0 comments on commit 3e0280a

Please sign in to comment.