Skip to content

Commit 18651b0

Browse files
committed
Resolve conflicts again
1 parent fb70196 commit 18651b0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

shell/platform/tizen/system_utils_tizen.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#include <utils_i18n.h>
88

9-
#include "flutter/shell/platform/tizen/tizen_log.h"
9+
#include "flutter/shell/platform/tizen/logger.h"
1010

1111
namespace flutter {
1212

@@ -17,7 +17,7 @@ std::vector<LanguageInfo> GetPreferredLanguageInfo() {
1717
i18n_ulocale_set_default(getenv("LANG"));
1818
int ret = i18n_ulocale_get_default(&locale);
1919
if (ret != I18N_ERROR_NONE) {
20-
FT_LOGE("i18n_ulocale_get_default() failed.");
20+
FT_LOG(Error) << "i18n_ulocale_get_default() failed.";
2121
return languages;
2222
}
2323
std::string preferred_locale(locale);
@@ -60,7 +60,7 @@ std::vector<LanguageInfo> GetPreferredLanguageInfo() {
6060
languages.push_back(info);
6161
}
6262
}
63-
FT_LOGI("Found %zu locales.", languages.size());
63+
FT_LOG(Info) << "Found " << languages.size() << " locales.";
6464

6565
return languages;
6666
}

0 commit comments

Comments
 (0)