diff --git a/System/Process/ServerInotify.php b/System/Process/ServerInotify.php index e78357e9..1d648c08 100644 --- a/System/Process/ServerInotify.php +++ b/System/Process/ServerInotify.php @@ -249,7 +249,9 @@ class ServerInotify extends Process */ public function trigger_reload() { - exec(PHP_BINARY . ' snowflake runtime:builder'); + exec(PHP_BINARY . ' snowflake runtime:builder', $output); + + var_dump(implode(PHP_EOL, $output)); Snowflake::reload(); }