In the write_to_stream method, the check on line 1384 is testing the stream. ``` if ( !os ) return os; ``` Should this check test the sentry instead? ``` if (!sentry) { return os; } ```