aboutsummaryrefslogtreecommitdiffstats
path: root/main/loader.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-24 18:51:41 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-24 18:51:41 +0000
commit438cb82e0f7387fd29396ac0037c9c574f7dd114 (patch)
treea48442a34e74ae91b6f1a3c6a9ebef7d943024c1 /main/loader.c
parente645e3fc7bcc93bdd42d2296ed0709e72096c3b6 (diff)
Conversions to ast_debug()
(issue #9984, patches from eliel and dimas) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@71338 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/loader.c')
-rw-r--r--main/loader.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/main/loader.c b/main/loader.c
index cd4e09ba4..5f29fc6b9 100644
--- a/main/loader.c
+++ b/main/loader.c
@@ -248,8 +248,7 @@ static int printdigest(const unsigned char *d)
for (pos = 0, x = 0; x < 16; x++)
pos += sprintf(buf + pos, " %02x", *d++);
- if (option_debug)
- ast_log(LOG_DEBUG, "Unexpected signature:%s\n", buf);
+ ast_debug(1, "Unexpected signature:%s\n", buf);
return 0;
}