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.
This commit is contained in:
parent
8b6405441a
commit
69177ffa17
@ -1 +1 @@
|
|||||||
const PTK_VERSION* = "1.0.12"
|
const PTK_VERSION* = "1.0.13"
|
13
ptk.nim
13
ptk.nim
@ -318,12 +318,13 @@ Options:
|
|||||||
var cfgFile: File
|
var cfgFile: File
|
||||||
if not fileExists(ptkrcFilename):
|
if not fileExists(ptkrcFilename):
|
||||||
warn "ptk: could not find .ptkrc file."
|
warn "ptk: could not find .ptkrc file."
|
||||||
ptkrcFilename = $getEnv("HOME") & "/.ptkrc"
|
debug "ptk: considered the following locations:\n\t" & ptkrcLocations.join("\n\t")
|
||||||
try:
|
#ptkrcFilename = $getEnv("HOME") & "/.ptkrc"
|
||||||
cfgFile = open(ptkrcFilename, fmWrite)
|
#try:
|
||||||
cfgFile.write("{\"timelineLogFile\": \"timeline.log.json\"}")
|
# cfgFile = open(ptkrcFilename, fmWrite)
|
||||||
except: warn "ptk: could not write default .ptkrc to " & ptkrcFilename
|
# cfgFile.write("{\"timelineLogFile\": \"timeline.log.json\"}")
|
||||||
finally: close(cfgFile)
|
#except: warn "ptk: could not write default .ptkrc to " & ptkrcFilename
|
||||||
|
#finally: close(cfgFile)
|
||||||
|
|
||||||
try: cfg = parseFile(ptkrcFilename)
|
try: cfg = parseFile(ptkrcFilename)
|
||||||
except: raise newException(IOError,
|
except: raise newException(IOError,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Package
|
# Package
|
||||||
|
|
||||||
version = "1.0.12"
|
version = "1.0.13"
|
||||||
author = "Jonathan Bernard"
|
author = "Jonathan Bernard"
|
||||||
description = "Personal Time Keeper"
|
description = "Personal Time Keeper"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user