git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9844 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Giagnocavo 2008-10-05 03:28:52 +00:00
parent aad1946087
commit 43dd5d6fdf
1 changed files with 4 additions and 1 deletions

View File

@ -306,8 +306,11 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_managed_load)
int success;
/* connect my internal structure to the blank pointer passed to me */
*module_interface = switch_loadable_module_create_module_interface(pool, modname);
#ifdef _MANAGED
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Loading mod_managed (Common Language Infrastructure), Microsoft CLR Version\n");
#else
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Loading mod_managed (Common Language Infrastructure), Mono Version\n");
#endif
globals.pool = pool;
if (loadRuntime() != SWITCH_STATUS_SUCCESS) {