Browse Source

modules_k/outbound: downgraded and ERR diagnostic to INFO

- Thanks to oej for pointing this out
Peter Dunkley 12 years ago
parent
commit
a20893dd6c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules_k/outbound/api.h

+ 1 - 1
modules_k/outbound/api.h

@@ -46,7 +46,7 @@ inline static int ob_load_api(ob_api_t *pxb)
 	bind_ob_f bind_ob_exports;
 	if (!(bind_ob_exports = (bind_ob_f)find_export("bind_ob", 1, 0)))
 	{
-		LM_ERR("Failed to import bind_ob\n");
+		LM_INFO("Failed to import bind_ob\n");
 		return -1;
 	}
 	return bind_ob_exports(pxb);