From c4b1c79448d14ca8d898dda76d3671b48465fae7 Mon Sep 17 00:00:00 2001 From: Charles Lowell Date: Thu, 11 Feb 2010 17:36:44 -0600 Subject: [PATCH] remove printf() --- ext/v8/callbacks.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/v8/callbacks.cpp b/ext/v8/callbacks.cpp index 09e0f24..c26e49d 100644 --- a/ext/v8/callbacks.cpp +++ b/ext/v8/callbacks.cpp @@ -118,7 +118,7 @@ Handle RacerRubyNamedPropertySetter(Local property, Local * The result is true if the property exists and false otherwise. */ Handle RacerRubyNamedPropertyQuery(Local property, const AccessorInfo& info) { - printf("Query: '%s'
", *String::AsciiValue(property)); + // printf("Query: '%s'
", *String::AsciiValue(property)); if (property->Length() == 0) { return False(); }