From 69177ffa172334b42e990a25fda68e8bbe555584 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Sat, 19 Mar 2022 08:49:26 -0500 Subject: [PATCH] Log locations when unable to load config. When we can't find a config file, log all the locations we looked and don't create a new file in $HOME/.ptkrc. There is currently an intermittent bug in the config loading logic that is leading to the default config file in $HOME/.ptkrc not being found and then being overwritten with the default config. This is step one in fixing it. --- private/version.nim | 2 +- ptk.nim | 13 +++++++------ ptk.nimble | 2 +- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/private/version.nim b/private/version.nim index dca5a95..f816605 100644 --- a/private/version.nim +++ b/private/version.nim @@ -1 +1 @@ -const PTK_VERSION* = "1.0.12" \ No newline at end of file +const PTK_VERSION* = "1.0.13" \ No newline at end of file diff --git a/ptk.nim b/ptk.nim index 4b40021..4d57352 100644 --- a/ptk.nim +++ b/ptk.nim @@ -318,12 +318,13 @@ Options: var cfgFile: File if not fileExists(ptkrcFilename): warn "ptk: could not find .ptkrc file." - ptkrcFilename = $getEnv("HOME") & "/.ptkrc" - try: - cfgFile = open(ptkrcFilename, fmWrite) - cfgFile.write("{\"timelineLogFile\": \"timeline.log.json\"}") - except: warn "ptk: could not write default .ptkrc to " & ptkrcFilename - finally: close(cfgFile) + debug "ptk: considered the following locations:\n\t" & ptkrcLocations.join("\n\t") + #ptkrcFilename = $getEnv("HOME") & "/.ptkrc" + #try: + # cfgFile = open(ptkrcFilename, fmWrite) + # cfgFile.write("{\"timelineLogFile\": \"timeline.log.json\"}") + #except: warn "ptk: could not write default .ptkrc to " & ptkrcFilename + #finally: close(cfgFile) try: cfg = parseFile(ptkrcFilename) except: raise newException(IOError, diff --git a/ptk.nimble b/ptk.nimble index 4f70315..b47d8c5 100644 --- a/ptk.nimble +++ b/ptk.nimble @@ -1,6 +1,6 @@ # Package -version = "1.0.12" +version = "1.0.13" author = "Jonathan Bernard" description = "Personal Time Keeper" license = "MIT"