#2 replace print() with logging

This commit is contained in:
Alok Saldanha
2019-09-17 13:08:30 -04:00
parent 5c41dbb18d
commit 0b267725ba

View File

@@ -8,6 +8,7 @@
# the specific language governing permissions and limitations under the License.
import time
import logging
from cellxgene_gateway.util import current_time_stamp
from cellxgene_gateway.env import ttl
@@ -32,5 +33,5 @@ class PruneProcessCache:
for process in processes_to_delete:
try:
cache.prune(process)
except Exception as detail:
print("failed to prune process:", detail)
except Exception:
logging.getLogger("werkzeug").exception("failed to prune process")