Log cleanup (avoid super long string with path)

This commit is contained in:
ItsLemmy
2025-09-28 20:39:28 -04:00
parent 68b2c83be1
commit 7f3842ddbf
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -215,7 +215,7 @@ Singleton {
const filePath = `file://${Quickshell.shellDir}/Assets/Translations/${langCode}.json`
fileView.path = filePath
isLoaded = false
Logger.log("I18n", `Loading translations from: ${filePath}`)
Logger.log("I18n", `Loading translations: ${langCode}`)
// Only load fallback translations if we are not using english and english is available
if (langCode !== "en" && availableLanguages.includes("en")) {
+1 -1
View File
@@ -50,7 +50,7 @@ Singleton {
}
function loadFontWithCacheBusting() {
Logger.log("Icons", "Loading font with cache busting:", cacheBustingPath)
Logger.log("Icons", "Loading font with cache busting")
// Destroy old loader first
if (currentFontLoader) {
+1 -1
View File
@@ -43,7 +43,7 @@ Singleton {
function registerBar(screenName) {
if (!readyBars[screenName]) {
readyBars[screenName] = true
console.log("ShellStateService: Bar on screen '" + screenName + "' is ready.")
Logger.log("BarService", "Bar is ready on screen:", screenName)
barReadyChanged(screenName)
}
}