Skip to content

Commit 7d4096a

Browse files
fixes json output
1 parent 6b4f529 commit 7d4096a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bin/cocos.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -839,7 +839,8 @@ def run_plugin(command, argv, plugins):
839839
# FIXME check there's not circular dependencies
840840
dependencies_objects[dep_name] = run_plugin(
841841
dep_name, argv, plugins)
842-
Logging.info(MultiLanguage.get_string('COCOS_INFO_RUNNING_PLUGIN_FMT', plugin.__class__.plugin_name()))
842+
# don't print this info. Not useful to users, and generates noise when parsing output
843+
# Logging.info(MultiLanguage.get_string('COCOS_INFO_RUNNING_PLUGIN_FMT', plugin.__class__.plugin_name()))
843844
plugin.run(argv, dependencies_objects)
844845
return plugin
845846

0 commit comments

Comments
 (0)