Logging Debug Information 36/314136/1
authorMd. Farhan Mahtab/NC eXperience Group /SRBD/Engineer/Samsung Electronics <farhan.m1@samsung.com>
Fri, 5 Jul 2024 11:20:11 +0000 (17:20 +0600)
committerMd. Farhan Mahtab/NC eXperience Group /SRBD/Engineer/Samsung Electronics <farhan.m1@samsung.com>
Fri, 5 Jul 2024 11:20:11 +0000 (17:20 +0600)
[Problem] Logging Debug Information

[Cause & Measure]
 Cause : Logging Debug Information
 Measure : Logging Debug Information

Change-Id: Iefdba7c7a1654fb5d5fad3822cb28159393c6b74
Signed-off-by: Md. Farhan Mahtab/NC eXperience Group /SRBD/Engineer/Samsung Electronics <farhan.m1@samsung.com>
SettingView/SettingView.cs
packaging/org.tizen.cssettings-1.1.20.tpk

index f338a519ccbbf67cbada7a910cf2572212218f96..58c240bc452e4d665a8d653fe6a37514bdd4da04 100644 (file)
@@ -435,13 +435,23 @@ namespace SettingView
             _ = Information.TryGetValue("http://tizen.org/feature/screen.width", out int screenWidth);
             _ = Information.TryGetValue("http://tizen.org/feature/screen.height", out int screenHeight);
 
+
+            Logger.Debug("screen width : " + screenWidth);
+            Logger.Debug("screen height : "+ screenHeight);
+
             int width = (int)(screenWidth * widthRatio);
             int height = (int)(screenHeight * (1 - bottomMargin) * heightRatio);
 
+            Logger.Debug("Window width : " + width);
+            Logger.Debug("Window height : " + height);
+
             // INFO: it looks like size of custom border is not included in total window size
             Size2D size = new Size2D(width, height);
             Position2D position = new Position2D((screenWidth - width) / 2, (screenHeight - height) / 2 - (int)(bottomMargin * screenHeight));
 
+            Logger.Debug("Window position X: " + position.X);
+            Logger.Debug("Window position Y: " + position.Y);
+
             appCustomBorder = new SettingViewBorder(new Size2D(screenWidth, screenHeight));
 
             Logger.Performance($"MAIN border");
index 16056e26ee6c4f6e49e626693a60fe2d184cae01..17f458e297e0ac4318ef14875c0e3bbac3a51183 100644 (file)
Binary files a/packaging/org.tizen.cssettings-1.1.20.tpk and b/packaging/org.tizen.cssettings-1.1.20.tpk differ