[core] Improve logging message when plasma store is started. (#3029)

Improve logging message when plasma store is started.
This commit is contained in:
Richard Liaw
2018-10-05 15:24:24 -07:00
committed by Robert Nishihara
parent 0651d3b629
commit ecd8f39580
+1 -1
View File
@@ -1148,7 +1148,7 @@ def start_plasma_store(node_ip_address,
objstore_memory = int(system_memory * 0.8)
# Start the Plasma store.
logger.info("Starting the Plasma object store with {0:.2f} GB memory."
.format(objstore_memory // 10**9))
.format(objstore_memory / 10**9))
plasma_store_name, p1 = ray.plasma.start_plasma_store(
plasma_store_memory=objstore_memory,
use_profiler=RUN_PLASMA_STORE_PROFILER,