summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2019-01-29 14:53:50 -0500
committerGravatar Lioncash2019-01-29 21:13:33 -0500
commit679e63550a23e33b5801174783c869a0c44b9f65 (patch)
treec53a65e91c1e29f59d8622cbaab842580b6f1e39
parentnvflinger: Remove unnecessary header inclusions (diff)
downloadyuzu-679e63550a23e33b5801174783c869a0c44b9f65.tar.gz
yuzu-679e63550a23e33b5801174783c869a0c44b9f65.tar.xz
yuzu-679e63550a23e33b5801174783c869a0c44b9f65.zip
nvflinger: Change log message in OpenDisplay to be a debug log instead of a warning
Opening a display isn't really a thing to warn about. It's an expected thing, so this can be a debug log. This also alters the string to indicate the display name better. Opening "Default" display reads a little nicer compared to Opening display Default.
-rw-r--r--src/core/hle/service/nvflinger/nvflinger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvflinger/nvflinger.cpp b/src/core/hle/service/nvflinger/nvflinger.cpp
index 7dbfc590b..6db2cce41 100644
--- a/src/core/hle/service/nvflinger/nvflinger.cpp
+++ b/src/core/hle/service/nvflinger/nvflinger.cpp
@@ -47,7 +47,7 @@ void NVFlinger::SetNVDrvInstance(std::shared_ptr<Nvidia::Module> instance) {
47} 47}
48 48
49u64 NVFlinger::OpenDisplay(std::string_view name) { 49u64 NVFlinger::OpenDisplay(std::string_view name) {
50 LOG_WARNING(Service, "Opening display {}", name); 50 LOG_DEBUG(Service, "Opening \"{}\" display", name);
51 51
52 // TODO(Subv): Currently we only support the Default display. 52 // TODO(Subv): Currently we only support the Default display.
53 ASSERT(name == "Default"); 53 ASSERT(name == "Default");