forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Perform all iOS logging through ASL (flutter#3481)
* Perform all iOS logging through ASL As of iOS 10, ASL is deprecated and replaced with os_log. ASL calls continue to result in logging but as of iOS 10.3, only ASL_LOG_NOTICE level and above are logged. This change partially reverts 2937f06, adding back stdout and stderr redirection, which resulted in loss of some direct writes to stdout that were necessary for debugging. This change replaces the direct use of syslog with ASL on iOS, which Apple has stated will continue to log on iOS >= 10. This eliminates the need for the previous fwd-declaration of syslog.
- Loading branch information
Showing
3 changed files
with
23 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters