diff options
author | Renee Danson Sommerfeld <Renee.Sommerfeld@Oracle.COM> | 2010-07-27 16:48:51 -0700 |
---|---|---|
committer | Renee Danson Sommerfeld <Renee.Sommerfeld@Oracle.COM> | 2010-07-27 16:48:51 -0700 |
commit | f6904bc3cbac0d84f41b1eb2ed9489a8f221695c (patch) | |
tree | 18b78f44135ed060706f809631f0084178bbb051 /usr/src/cmd/cmd-inet/lib/nwamd/loc.c | |
parent | a530e0a9c7875fde3c123c906ca193a70dfacc4f (diff) | |
download | illumos-joyent-f6904bc3cbac0d84f41b1eb2ed9489a8f221695c.tar.gz |
6933909 nwamd has some debug messages logging at the wrong level
6960252 nwamd is too verbose: 1: nwamd_loc_check_conditions: winning loc is NoNet
Diffstat (limited to 'usr/src/cmd/cmd-inet/lib/nwamd/loc.c')
-rw-r--r-- | usr/src/cmd/cmd-inet/lib/nwamd/loc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/src/cmd/cmd-inet/lib/nwamd/loc.c b/usr/src/cmd/cmd-inet/lib/nwamd/loc.c index cc20f95606..4376eb00fe 100644 --- a/usr/src/cmd/cmd-inet/lib/nwamd/loc.c +++ b/usr/src/cmd/cmd-inet/lib/nwamd/loc.c @@ -381,7 +381,7 @@ nwamd_loc_check_conditions(void) else winning_loc = NWAM_LOC_NAME_AUTOMATIC; } - nlog(LOG_INFO, "nwamd_loc_check_conditions: winning loc is %s", + nlog(LOG_DEBUG, "nwamd_loc_check_conditions: winning loc is %s", winning_loc); /* If the winning location is already active, do nothing */ @@ -471,7 +471,7 @@ nwamd_loc_handle_fini_event(nwamd_event_t event) /* Don't disable the location, as this can enable the Automatic loc */ if ((object = nwamd_object_find(NWAM_OBJECT_TYPE_LOC, event->event_object)) == NULL) { - nlog(LOG_ERR, "nwamd_loc_handle_fini_event: " + nlog(LOG_INFO, "nwamd_loc_handle_fini_event: " "loc %s not found", event->event_object); nwamd_event_do_not_send(event); return; @@ -552,7 +552,7 @@ nwamd_loc_handle_state_event(nwamd_event_t event) if ((object = nwamd_object_find(NWAM_OBJECT_TYPE_LOC, event->event_object)) == NULL) { - nlog(LOG_ERR, "nwamd_loc_handle_state_event: " + nlog(LOG_INFO, "nwamd_loc_handle_state_event: " "state event for nonexistent loc %s", event->event_object); nwamd_event_do_not_send(event); return; |