Skip to content

Commit

Permalink
2012-02-29_03-53-59
Browse files Browse the repository at this point in the history
  • Loading branch information
camerb committed Feb 29, 2012
1 parent c67d557 commit 2d38f6a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion FcnLib.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -1493,7 +1493,7 @@ AddToTrace(var, t1="", t2="", t3="", t4="", t5="", t6="", t7="", t8="", t9="", t
var = %var%

;put an awesome timestamp on it
var := CurrentTime("hyphenated") . ": " . var
var := CurrentTime("hyphenated") . " " . A_ComputerName . ": " . var
traceFile:=GetPath("trace.txt")
FileAppendLine(var, traceFile)
}
Expand Down
3 changes: 2 additions & 1 deletion FireflyFeesBot.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ Loop, parse, uiSections, CSV

FireflyCheckin("Bot", "Working")

addtotrace("looking at new fee - grey line")
;addtotrace("looking at new fee - grey line")
addtotrace("looking at new fee")
addtotrace(thisreferencenumber)
addtotrace(thisfee)
addtotrace("adding the fee")
Expand Down
9 changes: 5 additions & 4 deletions Persistent.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -721,12 +721,13 @@ if (A_ComputerName = "BAUSTIANVM" and Mod(A_Sec, 5)==0)
}

;getting some info about the AHK processes that are running currently
;if (A_ComputerName = "BAUSTIANVM" and A_Sec=42)
;{
if (A_ComputerName = "BAUSTIANVM" and A_Sec=42)
{
addToTrace("time marker (tick tock) grey line")
;HowManyAhksAreRunning()
;HowManyAhksAreRunning(A_ScriptName)
;SleepSeconds(1)
;}
SleepSeconds(1)
}
;}}}

;{{{ Continual backups
Expand Down

0 comments on commit 2d38f6a

Please sign in to comment.