Remove log prints in the thread (#4921)
authorhjhun <36876573+hjhun@users.noreply.github.com>
Wed, 25 Jan 2023 08:02:31 +0000 (17:02 +0900)
committerGitHub <noreply@github.com>
Wed, 25 Jan 2023 08:02:31 +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 c2a97e7..3740a24 100644 (file)
@@ -115,7 +115,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.
@@ -173,7 +173,7 @@ namespace Tizen.Applications
             if (_task != null)
             {
                 TizenUISynchronizationContext.Initialize();
-            }            
+            }
 
             if (!GlobalizationMode.Invariant)
             {
@@ -381,11 +381,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
             {
@@ -399,11 +394,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
             {