diff options
author | Jameson Graef Rollins <jrollins@finestructure.net> | 2009-01-31 11:37:22 -0500 |
---|---|---|
committer | Jameson Graef Rollins <jrollins@finestructure.net> | 2009-01-31 11:37:22 -0500 |
commit | f75a5747a8b99e04c02c475791c476f1fbd2b674 (patch) | |
tree | cfaa6fc95c738193af3d7f42c032fb362ca355a7 /src | |
parent | c066aca91e4e9595bb0c709673dfc5a51666b4c9 (diff) |
change log level for unacceptable keys that can not be translated to
be "debug" instead of "error".
Diffstat (limited to 'src')
-rw-r--r-- | src/common | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -674,7 +674,7 @@ process_user_id() { else log debug " - unacceptable primary key." if [ -z "$sshKey" ] ; then - log error " ! primary key could not be translated (not RSA or DSA?)." + log debug " ! primary key could not be translated (not RSA or DSA?)." else echo "1:${sshKey}" fi @@ -732,7 +732,7 @@ process_user_id() { else log debug " - unacceptable sub key." if [ -z "$sshKey" ] ; then - log error " ! sub key could not be translated (not RSA or DSA?)." + log debug " ! sub key could not be translated (not RSA or DSA?)." else echo "1:${sshKey}" fi |