From: Holger Freyther Date: Wed, 22 Feb 2006 00:14:54 +0000 (+0000) Subject: classes/tinderclient.bbclass: X-Git-Tag: Release-2010-05/1~9453^2~2304^2~90 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=98d6c76e508c0e41b76e9f6966e127ed5e444fde;p=openembedded.git classes/tinderclient.bbclass: Be less verbose do not print the results for now. A proper fix/configurable one is pending. --- diff --git a/classes/tinderclient.bbclass b/classes/tinderclient.bbclass index c2e09b86bc..0dc186af27 100644 --- a/classes/tinderclient.bbclass +++ b/classes/tinderclient.bbclass @@ -84,7 +84,7 @@ def tinder_build_start(d): selector = url + "/xml/build_start.pl" - print "selector %s and url %s" % (selector, url) + #print "selector %s and url %s" % (selector, url) # now post it h = httplib.HTTP(server) @@ -94,7 +94,7 @@ def tinder_build_start(d): h.endheaders() h.send(body) errcode, errmsg, headers = h.getreply() - print errcode, errmsg, headers + #print errcode, errmsg, headers report = h.file.read() # now let us find the machine id that was assigned to us @@ -134,8 +134,8 @@ def tinder_send_http(d, status, log): h.endheaders() h.send(body) errcode, errmsg, headers = h.getreply() - print errcode, errmsg, headers - print h.file.read() + #print errcode, errmsg, headers + #print h.file.read() def tinder_print_info(d):