From bdd3e690242ff7d762efe6c8d3faebff3d7f423d Mon Sep 17 00:00:00 2001 From: "roberto@precise64" Date: Sat, 18 Feb 2012 11:40:25 +0100 Subject: [PATCH] removed some funny debug log --- plugins/python/python_plugin.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/plugins/python/python_plugin.c b/plugins/python/python_plugin.c index b56d3f99..abb22264 100644 --- a/plugins/python/python_plugin.c +++ b/plugins/python/python_plugin.c @@ -180,7 +180,6 @@ int uwsgi_python_init() { Py_OptimizeFlag = up.optimize; - uwsgi_log("AAAA\n"); Py_Initialize(); @@ -244,14 +243,10 @@ void uwsgi_python_atexit() { // this time we use this higher level function // as this code can be executed in a signal handler - uwsgi_log("FOO 0\n"); - if (!Py_IsInitialized()) { return; } - uwsgi_log("FOO\n"); - if (uwsgi.has_threads) PyGILState_Ensure(); // no need to worry about freeing memory @@ -1097,7 +1092,6 @@ void uwsgi_python_master_fixup(int step) { void uwsgi_python_enable_threads() { - uwsgi_log("ALEE\n"); PyEval_InitThreads(); if (pthread_key_create(&up.upt_save_key, NULL)) { uwsgi_error("pthread_key_create()");