[ComponentBased] Fix Log Tags (#1030)
authorhjhun <36876573+hjhun@users.noreply.github.com>
Mon, 23 Sep 2019 23:26:31 +0000 (08:26 +0900)
committerpjh9216 <jh9216.park@samsung.com>
Mon, 23 Sep 2019 23:26:31 +0000 (08:26 +0900)
Currently, the log tag is too long.
This patch changes the log tag to "Tizen.Applications".

Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/Tizen.Applications.ComponentBased.Default/Tizen.Applications.ComponentBased.Default/EFLComponentBasedApplication.cs [changed mode: 0644->0755]
src/Tizen.Applications.ComponentBased.Default/Tizen.Applications.ComponentBased.Default/EFLWindowInfo.cs [changed mode: 0644->0755]
src/Tizen.Applications.ComponentBased/Tizen.Applications.ComponentBased.Common/ComponentBasedApplication.cs [changed mode: 0644->0755]
src/Tizen.Applications.ComponentBased/Tizen.Applications.ComponentBased.Common/FrameComponentStateManager.cs [changed mode: 0644->0755]
src/Tizen.Applications.ComponentBased/Tizen.Applications.ComponentBased.Common/ServiceComponent.cs [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 89c6490..5abfcff
@@ -11,7 +11,7 @@ namespace Tizen.Applications.ComponentBased.Default
     /// <since_tizen> 6 </since_tizen>
     public class EFLComponentBasedApplication : ComponentBasedApplication
     {
-        private const string LogTag = "Tizen.Applications.ComponentBasedApplication";
+        private const string LogTag = "Tizen.Applications";
 
         /// <summary>
         /// Initializes the ComponentBasedApplication class.
old mode 100644 (file)
new mode 100755 (executable)
index 7d04b0b..d2ba807
@@ -10,7 +10,7 @@ namespace Tizen.Applications.ComponentBased.Default
     /// <since_tizen> 6 </since_tizen>
     public class EFLWindowInfo : IWindowInfo
     {
-        private const string LogTag = "Tizen.Applications.EFLWindow";
+        private const string LogTag = "Tizen.Applications";
         private Window _win;
         private int _resId;
 
old mode 100644 (file)
new mode 100755 (executable)
index 827cc29..fbeb0c9
@@ -25,7 +25,7 @@ namespace Tizen.Applications.ComponentBased.Common
     /// <since_tizen> 6 </since_tizen>
     public abstract class ComponentBasedApplication : Application
     {
-        private const string LogTag = "Tizen.Applications.ComponentBasedApplicationBase";
+        private const string LogTag = "Tizen.Applications";
         private Dictionary<Type, ComponentStateManger> _componentFactories = new Dictionary<Type, ComponentStateManger>();
         private Interop.CBApplication.CBAppLifecycleCallbacks _callbacks;
 
old mode 100644 (file)
new mode 100755 (executable)
index e584b8c..f850e8d
@@ -7,7 +7,7 @@ namespace Tizen.Applications.ComponentBased.Common
     internal class FrameComponentStateManager : ComponentStateManger
     {
         private Interop.CBApplication.FrameLifecycleCallbacks _callbacks;
-        private const string LogTag = "Tizen.Applications.FrameComponentStateManager";
+        private const string LogTag = "Tizen.Applications";
 
         internal FrameComponentStateManager(Type ctype, string id, ComponentBasedApplication parent) : base(ctype, id, parent)
         {