Turn down the debug level on messages for which a bug has been fixed.

This commit is contained in:
Joshua Fuhs 2012-07-13 11:23:19 -04:00
parent 714a0b24c7
commit 36432847bc
1 changed files with 4 additions and 4 deletions

View File

@ -38,7 +38,7 @@ Bar_init(m) {
; Create the GUI window
wndTitle := "bug.n_BAR_" m
GuiN := (m - 1) + 1
Log_dbg_msg(3, "Bar_init(): Gui, " . GuiN . ": Default")
Log_dbg_msg(6, "Bar_init(): Gui, " . GuiN . ": Default")
Gui, %GuiN%: Default
IfWinExist, %wndTitle%
Gui, Destroy
@ -652,7 +652,7 @@ Bar_updateStatus() {
Loop, % Manager_monitorCount {
m := A_Index
GuiN := (m - 1) + 1
Log_dbg_msg(3, "Bar_updateStatus(): Gui, " . GuiN . ": Default")
Log_dbg_msg(6, "Bar_updateStatus(): Gui, " . GuiN . ": Default")
Gui, %GuiN%: Default
If Config_readinBat {
Bar_getBatteryStatus(b1, b2)
@ -711,7 +711,7 @@ Bar_updateTitle(debugMsg = "") {
i := Config_viewCount + 2
Loop, % Manager_monitorCount {
GuiN := (A_Index - 1) + 1
Log_dbg_msg(3, "Bar_updateTitle(): Gui, " . GuiN . ": Default")
Log_dbg_msg(6, "Bar_updateTitle(): Gui, " . GuiN . ": Default")
Gui, %GuiN%: Default
GuiControlGet, content, , Bar_#%A_Index%_#%i%
If (A_Index = Manager_aMonitor) {
@ -728,7 +728,7 @@ Bar_updateView(m, v) {
Local IdsLen, ViewIdsLen
GuiN := (m - 1) + 1
Log_dbg_msg(3, "Bar_updateView(): Gui, " . GuiN . ": Default")
Log_dbg_msg(6, "Bar_updateView(): m: " . m . "; Gui, " . GuiN . ": Default")
Gui, %GuiN%: Default
IdsLen := StrLen(Manager_managedWndIds)