Everywhere: Replace a bundle of dbg with dbgln.

These changes are arbitrarily divided into multiple commits to make it
easier to find potentially introduced bugs with git bisect.
This commit is contained in:
asynts 2021-01-11 13:32:26 +01:00 committed by Andreas Kling
commit 843ebbd2c3
Notes: sideshowbarker 2024-07-18 23:55:25 +09:00
15 changed files with 46 additions and 21 deletions

View file

@ -71,7 +71,7 @@ bool Desktop::set_wallpaper(const StringView& path, bool save_config)
if (ret_val && save_config) {
RefPtr<Core::ConfigFile> config = Core::ConfigFile::get_for_app("WindowManager");
dbg() << "Saving wallpaper path '" << path << "' to config file at " << config->file_name();
dbgln("Saving wallpaper path '{}' to config file at {}", path, config->file_name());
config->write_entry("Background", "Wallpaper", path);
config->sync();
}