forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 17
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Previous discussion: #75 (comment)
- The embedder should properly control its logging level based on the
verbose_logging
switch (which is enabled byflutter-tizen run --verbose-system-logs
).- Example:
Lines 228 to 231 in 9f08d18
fml::LogSettings log_settings; log_settings.min_log_level = settings.verbose_logging ? fml::LOG_INFO : fml::LOG_ERROR; fml::SetLogSettings(log_settings);
- Example:
- Remove unnecessary logs in the embedder or make them more informative. We should remove all occurrences of
FT_LOGD
and use onlyFT_LOGI
/W
/E
.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request