From 2e04ffe00c2078b40bc943c70e3033073c7dceb4 Mon Sep 17 00:00:00 2001 From: Eric Liang Date: Tue, 6 Nov 2018 21:23:07 -0800 Subject: [PATCH] Change dict serialization warning to debug (#3230) --- python/ray/worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/worker.py b/python/ray/worker.py index 8b1d7e1c4..fe65e290a 100644 --- a/python/ray/worker.py +++ b/python/ray/worker.py @@ -314,7 +314,7 @@ class Worker(object): "of their fields. This behavior may " "be incorrect in some cases.".format( type(e.example_object))) - logger.warning(warning_message) + logger.debug(warning_message) except (serialization.RayNotDictionarySerializable, serialization.CloudPickleError, pickle.pickle.PicklingError, Exception):