1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

Lower the loglevel for "Recovery lock successfully taken"

from ERR to NOTICE

BZ62086

(This used to be ctdb commit 7fa8486f9ffe2a039360b07423f734bdd884fe1d)
This commit is contained in:
Ronnie Sahlberg 2010-04-07 10:42:51 +10:00
parent e179910136
commit 3f226d0c8e
2 changed files with 2 additions and 2 deletions

View File

@ -819,7 +819,7 @@ bool ctdb_recovery_lock(struct ctdb_context *ctdb, bool keep)
}
if (keep) {
DEBUG(DEBUG_ERR, ("Recovery lock taken successfully\n"));
DEBUG(DEBUG_NOTICE, ("Recovery lock taken successfully\n"));
}
DEBUG(DEBUG_NOTICE,("ctdb_recovery_lock: Got recovery lock on '%s'\n", ctdb->recovery_lock_file));

View File

@ -1342,7 +1342,7 @@ static int do_recovery(struct ctdb_recoverd *rec,
return -1;
}
ctdb_ctrl_report_recd_lock_latency(ctdb, CONTROL_TIMEOUT(), timeval_elapsed(&start_time));
DEBUG(DEBUG_ERR,("Recovery lock taken successfully by recovery daemon\n"));
DEBUG(DEBUG_NOTICE,("Recovery lock taken successfully by recovery daemon\n"));
}
DEBUG(DEBUG_NOTICE, (__location__ " Recovery initiated due to problem with node %u\n", rec->last_culprit_node));