Remove log prints in the thread (#4920)
authorhjhun <36876573+hjhun@users.noreply.github.com>
Wed, 25 Jan 2023 08:02:18 +0000 (17:02 +0900)
committerGitHub <noreply@github.com>
Wed, 25 Jan 2023 08:02:18 +0000 (17:02 +0900)
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/Tizen.Applications.Common/Tizen.Applications/CoreApplication.cs

index 7abee62..0e83f37 100644 (file)
@@ -113,7 +113,7 @@ namespace Tizen.Applications
         /// The backend instance.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
-        protected ICoreBackend Backend { get { return _backend; } }      
+        protected ICoreBackend Backend { get { return _backend; } }
 
         /// <summary>
         /// Runs the application's main loop.
@@ -171,7 +171,7 @@ namespace Tizen.Applications
             if (_task != null)
             {
                 TizenUISynchronizationContext.Initialize();
-            }            
+            }
 
             if (!GlobalizationMode.Invariant)
             {
@@ -379,11 +379,6 @@ namespace Tizen.Applications
             if (cultureInfo != null)
             {
                 CultureInfo.CurrentCulture = cultureInfo;
-                Thread thread = new Thread(() =>
-                {
-                    Log.Info(LogTag, "Locale: " + locale.ToLower(cultureInfo) + ", " + locale.ToUpper(cultureInfo));
-                });
-                thread.Start();
             }
             else
             {
@@ -397,11 +392,6 @@ namespace Tizen.Applications
             if (cultureInfo != null)
             {
                 CultureInfo.CurrentUICulture = cultureInfo;
-                Thread thread = new Thread(() =>
-                {
-                    Log.Info(LogTag, "Locale: " + locale.ToLower(cultureInfo) + ", " + locale.ToUpper(cultureInfo));
-                });
-                thread.Start();
             }
             else
             {