2010-01-26 U-anarquia\miguel <miguel@anarquia>
authorMiguel de Icaza <miguel@gnome.org>
Wed, 27 Jan 2010 04:22:37 +0000 (04:22 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Wed, 27 Jan 2010 04:22:37 +0000 (04:22 -0000)
* mono-dl.c: Removed debugging messages for the embeddable version
of mono-dl.

svn path=/trunk/mono/; revision=150273

mono/utils/ChangeLog
mono/utils/mono-dl.c

index 9ad6f57d5f0bb891d74867cea2cd3c4a61d684c3..598162087506cf01c221fbaf6ae8b5956d46f536 100644 (file)
@@ -1,3 +1,8 @@
+2010-01-26  U-anarquia\miguel  <miguel@anarquia>
+
+       * mono-dl.c: Removed debugging messages for the embeddable version
+       of mono-dl.
+
 2010-01-22 Miguel de Icaza (miguel@novell.com)
 
        * mono-dl.c: Always strdup the return value, for consistency.
index 2c01a79e55e9b8f4672d3261a897b7a656fedc64..7b68e7aee24d4a4e4a70e108a9ff3b7ac4eb4e6f 100644 (file)
@@ -520,7 +520,6 @@ LL_SO_OPEN (const char *file, int flag)
                
        mappings = g_hash_table_lookup (mono_dls, file);
        ll_last_error = mappings == NULL ? "File not registered" : "";
-       printf ("Returning mappings=0x%p\n", mappings);
        return mappings;
 }
 
@@ -535,7 +534,6 @@ _LL_SO_SYMBOL (void *handle, const char *symbol)
 {
        MonoDlMapping *mappings = (MonoDlMapping *) handle;
        
-       printf ("During lookup: 0x%p\n", handle);
        for (;mappings->name; mappings++){
                if (strcmp (symbol, mappings->name) == 0){
                        ll_last_error = "";