Remove useless debug logs from ArchUpdater

ArchUpdaterService: remove 4 useless debug logs
This commit is contained in:
Ly-sec 2025-08-31 13:58:29 +02:00
parent 8395b2640e
commit d7eea7fdae

View file

@ -244,7 +244,6 @@ Singleton {
stdout: StdioCollector { stdout: StdioCollector {
onStreamFinished: { onStreamFinished: {
allUpdatesOutput = text allUpdatesOutput = text
Logger.log("ArchUpdater", "First process output length:", text.length, "content:", text.trim())
// Now get AUR-only updates to compare // Now get AUR-only updates to compare
checkAurOnlyProcess.running = true checkAurOnlyProcess.running = true
} }
@ -274,7 +273,6 @@ Singleton {
} }
stdout: StdioCollector { stdout: StdioCollector {
onStreamFinished: { onStreamFinished: {
Logger.log("ArchUpdater", "Processing update results - all updates output length:", allUpdatesOutput.length)
parseAllUpdatesOutput(allUpdatesOutput, text) parseAllUpdatesOutput(allUpdatesOutput, text)
Logger.log("ArchUpdater", "found", repoPackages.length, "repo package(s) and", aurPackages.length, Logger.log("ArchUpdater", "found", repoPackages.length, "repo package(s) and", aurPackages.length,
"AUR package(s) to upgrade") "AUR package(s) to upgrade")
@ -509,8 +507,6 @@ Singleton {
return return
} }
Logger.log("ArchUpdater", "Force refresh requested")
// Clear error states when refreshing // Clear error states when refreshing
updateFailed = false updateFailed = false
lastUpdateError = "" lastUpdateError = ""
@ -525,7 +521,6 @@ Singleton {
lastCheckError = "" lastCheckError = ""
} }
Logger.log("ArchUpdater", "Force refresh using", cachedAurHelper)
checkAurUpdatesProcess.command = [cachedAurHelper, "-Qu"] checkAurUpdatesProcess.command = [cachedAurHelper, "-Qu"]
checkAurOnlyProcess.command = [cachedAurHelper, getAurOnlyFlag()] checkAurOnlyProcess.command = [cachedAurHelper, getAurOnlyFlag()]
@ -635,7 +630,6 @@ Singleton {
checkAurOnlyProcess.command = [cachedAurHelper, getAurOnlyFlag()] checkAurOnlyProcess.command = [cachedAurHelper, getAurOnlyFlag()]
checkAurUpdatesProcess.running = true checkAurUpdatesProcess.running = true
lastPollTime = Date.now() lastPollTime = Date.now()
Logger.log("ArchUpdater", "Initial package check started with", cachedAurHelper)
}, 1000) }, 1000)
} }
} }