IRC channel logs

2024-03-01.log

back to list of logs

<reedm>Is there a standard way to access the Haunt module in the guile repl? If I do "guix install haunt", I am able to build/serve the example sites, but I can't access the module via > ,use(haunt)
<reedm>*guix shell haunt
<dthompson>reedm: add guile to your environment: 'guix shell guile haunt'
<dthompson>the presence of guile will instruct guix to setup guile's load paths appropriately
<reedm>thanks!
<daviid>apteryx: wrt https://paste.debian.net/1309097/, as i did mention earlier (but i think you didn't see my msg), i would prefer we call the new log-handler slot (getter, init-kw appropriately) buffering-mode, default 'line - wdyt?
<apteryx>daviid: I've now read your message w.r.t. the log frequency. I like buffering-mode on the port-log handler, but I see benefit in having a generic flush-after-emit? switch, which would apply to the base handler class and be generally useful to all handlers
<apteryx>as I'm not sure line/block/none buffering may apply to all log handlers (?)
<apteryx>currently we have just stdout and file, so it does apply, but what it we had a network-based logging handler, such as a syslog one?
<daviid>i would go for buffering-mode, line/block || line/default || emit/block || emit||default
<daviid>*emit/default
<daviid>but i would avoid none in the buffering-mode values