From e6c9e2bf470548899c1ffc97853dd691aa4f243b Mon Sep 17 00:00:00 2001 From: xingyanan Date: Thu, 1 Sep 2022 03:03:28 +0000 Subject: [PATCH] logi bugfix Signed-off-by: xingyanan --- wm/src/window_impl.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wm/src/window_impl.cpp b/wm/src/window_impl.cpp index 8ee0619e..ab44755f 100755 --- a/wm/src/window_impl.cpp +++ b/wm/src/window_impl.cpp @@ -784,13 +784,13 @@ void WindowImpl::SetSystemConfig() } if (SingletonContainer::Get().GetSystemConfig(windowSystemConfig_) == WMError::WM_OK) { if (WindowHelper::IsMainWindow(property_->GetWindowType())) { - WLOGFI("get system decor enable:%{public}d", windowSystemConfig_.isSystemDecorEnable_); + WLOGFD("get system decor enable:%{public}d", windowSystemConfig_.isSystemDecorEnable_); property_->SetDecorEnable(windowSystemConfig_.isSystemDecorEnable_); - WLOGFI("get stretchable enable:%{public}d", windowSystemConfig_.isStretchable_); + WLOGFD("get stretchable enable:%{public}d", windowSystemConfig_.isStretchable_); property_->SetStretchable(windowSystemConfig_.isStretchable_); // if window mode is undefined, set it from configuration if (property_->GetWindowMode() == WindowMode::WINDOW_MODE_UNDEFINED) { - WLOGFI("get default window mode:%{public}u", windowSystemConfig_.defaultWindowMode_); + WLOGFD("get default window mode:%{public}u", windowSystemConfig_.defaultWindowMode_); property_->SetWindowMode(windowSystemConfig_.defaultWindowMode_); } if (property_->GetLastWindowMode() == WindowMode::WINDOW_MODE_UNDEFINED) { @@ -1836,7 +1836,7 @@ void WindowImpl::UpdateRect(const struct Rect& rect, bool decoStatus, WindowSize property_->SetOriginRect(rect); } } - WLOGFI("sizeChange callback size: %{public}lu", (unsigned long)windowChangeListeners_.size()); + WLOGFD("sizeChange callback size: %{public}lu", (unsigned long)windowChangeListeners_.size()); NotifySizeChange(rectToAce, reason); if (uiContent_ != nullptr) {