Merged revisions 302788 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r302788 | russell | 2011-01-19 17:06:14 -0600 (Wed, 19 Jan 2011) | 4 lines
  
  Turn a noisy verbose message into a debug message.
  
  This can drown your console if you're using the AMI over HTTP.
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@302789 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2011-01-19 23:06:46 +00:00
parent 5001983a56
commit a13d703fe3

View File

@@ -5465,7 +5465,7 @@ static int generic_http_callback(struct ast_tcptls_session_instance *ser,
hdrlen = strlen(v->name) + strlen(v->value) + 3;
m.headers[m.hdrcount] = alloca(hdrlen);
snprintf((char *) m.headers[m.hdrcount], hdrlen, "%s: %s", v->name, v->value);
ast_verb(4, "HTTP Manager add header %s\n", m.headers[m.hdrcount]);
ast_debug(1, "HTTP Manager add header %s\n", m.headers[m.hdrcount]);
m.hdrcount = x + 1;
}