Browse Source

2005-03-23 Chris Toshok <[email protected]>

        * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
        out some spew.


svn path=/trunk/mono/; revision=42188
Chris Toshok 21 years ago
parent
commit
897b486ca5
2 changed files with 7 additions and 2 deletions
  1. 5 0
      mono/metadata/ChangeLog
  2. 2 2
      mono/metadata/mono-debug-debugger.c

+ 5 - 0
mono/metadata/ChangeLog

@@ -1,3 +1,8 @@
+2005-03-23  Chris Toshok  <[email protected]>
+
+	* mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
+	out some spew.
+
 2005-03-24  Raja R Harinath  <[email protected]>
 
 	* Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile

+ 2 - 2
mono/metadata/mono-debug-debugger.c

@@ -406,8 +406,8 @@ mono_debugger_runtime_invoke (MonoMethod *method, void *obj, void **params, Mono
 	MonoObject *retval;
 	gchar *message;
 
-	g_message (G_STRLOC ": %p - %p - %p - %p", method, obj, params, exc);
-	g_message (G_STRLOC ": %s.%s", method->klass->name, method->name);
+	//	g_message (G_STRLOC ": %p - %p - %p - %p", method, obj, params, exc);
+	//	g_message (G_STRLOC ": %s.%s", method->klass->name, method->name);
 
 	if (!strcmp (method->name, ".ctor")) {
 		retval = obj = mono_object_new (mono_domain_get (), method->klass);