File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 6
6
7
7
#include < utils_i18n.h>
8
8
9
- #include " flutter/shell/platform/tizen/tizen_log .h"
9
+ #include " flutter/shell/platform/tizen/logger .h"
10
10
11
11
namespace flutter {
12
12
@@ -17,7 +17,7 @@ std::vector<LanguageInfo> GetPreferredLanguageInfo() {
17
17
i18n_ulocale_set_default (getenv (" LANG" ));
18
18
int ret = i18n_ulocale_get_default (&locale);
19
19
if (ret != I18N_ERROR_NONE) {
20
- FT_LOGE ( " i18n_ulocale_get_default() failed." ) ;
20
+ FT_LOG (Error) << " i18n_ulocale_get_default() failed." ;
21
21
return languages;
22
22
}
23
23
std::string preferred_locale (locale);
@@ -60,7 +60,7 @@ std::vector<LanguageInfo> GetPreferredLanguageInfo() {
60
60
languages.push_back (info);
61
61
}
62
62
}
63
- FT_LOGI ( " Found %zu locales. " , languages.size ()) ;
63
+ FT_LOG (Info) << " Found " << languages.size () << " locales. " ;
64
64
65
65
return languages;
66
66
}
You can’t perform that action at this time.
0 commit comments