From abafef7fb6db9213b5411cab6fc6622de4ab85d6 Mon Sep 17 00:00:00 2001 From: epriestley Date: Mon, 12 May 2014 17:27:19 -0700 Subject: [PATCH] Write waiting message to stderr, not stdout. --- src/workflow/ArcanistCallConduitWorkflow.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/workflow/ArcanistCallConduitWorkflow.php b/src/workflow/ArcanistCallConduitWorkflow.php index d0717c55..d999ef32 100644 --- a/src/workflow/ArcanistCallConduitWorkflow.php +++ b/src/workflow/ArcanistCallConduitWorkflow.php @@ -63,7 +63,7 @@ EOTEXT $method = reset($method); $console = PhutilConsole::getConsole(); - $console->writeOut("%s\n", pht('Waiting for JSON parameters on stdin...')); + $console->writeErr("%s\n", pht('Waiting for JSON parameters on stdin...')); $params = @file_get_contents('php://stdin'); $params = json_decode($params, true); if (!is_array($params)) {