mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 03:20:57 +00:00
Replace ast_log(LOG_DEBUG, ...) with ast_debug()
(closes issue #18556) Reported by: kkm Review: https://reviewboard.asterisk.org/r/1071/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@306258 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1481,9 +1481,9 @@ static int ast_unlock_path_flock(const char *path)
|
||||
snprintf(s, strlen(path) + 19, "%s/lock", path);
|
||||
unlink(s);
|
||||
path_lock_destroy(p);
|
||||
ast_log(LOG_DEBUG, "Unlocked path '%s'\n", path);
|
||||
ast_debug(1, "Unlocked path '%s'\n", path);
|
||||
} else {
|
||||
ast_log(LOG_DEBUG, "Failed to unlock path '%s': "
|
||||
ast_debug(1, "Failed to unlock path '%s': "
|
||||
"lock not found\n", path);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user