Turn down the debug level on messages for which a bug has been fixed.
This commit is contained in:
parent
714a0b24c7
commit
36432847bc
1 changed files with 4 additions and 4 deletions
|
@ -38,7 +38,7 @@ Bar_init(m) {
|
||||||
; Create the GUI window
|
; Create the GUI window
|
||||||
wndTitle := "bug.n_BAR_" m
|
wndTitle := "bug.n_BAR_" m
|
||||||
GuiN := (m - 1) + 1
|
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
|
Gui, %GuiN%: Default
|
||||||
IfWinExist, %wndTitle%
|
IfWinExist, %wndTitle%
|
||||||
Gui, Destroy
|
Gui, Destroy
|
||||||
|
@ -652,7 +652,7 @@ Bar_updateStatus() {
|
||||||
Loop, % Manager_monitorCount {
|
Loop, % Manager_monitorCount {
|
||||||
m := A_Index
|
m := A_Index
|
||||||
GuiN := (m - 1) + 1
|
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
|
Gui, %GuiN%: Default
|
||||||
If Config_readinBat {
|
If Config_readinBat {
|
||||||
Bar_getBatteryStatus(b1, b2)
|
Bar_getBatteryStatus(b1, b2)
|
||||||
|
@ -711,7 +711,7 @@ Bar_updateTitle(debugMsg = "") {
|
||||||
i := Config_viewCount + 2
|
i := Config_viewCount + 2
|
||||||
Loop, % Manager_monitorCount {
|
Loop, % Manager_monitorCount {
|
||||||
GuiN := (A_Index - 1) + 1
|
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
|
Gui, %GuiN%: Default
|
||||||
GuiControlGet, content, , Bar_#%A_Index%_#%i%
|
GuiControlGet, content, , Bar_#%A_Index%_#%i%
|
||||||
If (A_Index = Manager_aMonitor) {
|
If (A_Index = Manager_aMonitor) {
|
||||||
|
@ -728,7 +728,7 @@ Bar_updateView(m, v) {
|
||||||
Local IdsLen, ViewIdsLen
|
Local IdsLen, ViewIdsLen
|
||||||
|
|
||||||
GuiN := (m - 1) + 1
|
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
|
Gui, %GuiN%: Default
|
||||||
|
|
||||||
IdsLen := StrLen(Manager_managedWndIds)
|
IdsLen := StrLen(Manager_managedWndIds)
|
||||||
|
|
Loading…
Reference in a new issue