Discussion:
special variables $tag and ${0} are empty
MK
2013-05-27 17:00:41 UTC
Permalink
contents of 'startup':

set autolog on
set autolog_path ~/Documents/irclogs/$tag/${0}/${0}-%Y-%m-%d

but there will be only one log file created, named
~/Documents/irclogs/-2013-05-26


in 'config' in 'settings' I also have:
"fe-common/core" = {
autolog = "yes";
autolog_path = "~/Documents/irclogs/$tag/${0}/${0}-%Y-%m-%d";
};
Jase Thew
2013-05-28 14:39:38 UTC
Permalink
Post by MK
set autolog on
set autolog_path ~/Documents/irclogs/$tag/${0}/${0}-%Y-%m-%d
but there will be only one log file created, named
~/Documents/irclogs/-2013-05-26
"fe-common/core" = {
autolog = "yes";
autolog_path = "~/Documents/irclogs/$tag/${0}/${0}-%Y-%m-%d";
};
In your startup file, try escaping the $0's :

set autolog_path ~/Documents/irclogs/$tag/\${0}/\${0}-%Y-%m-%d

Regards,

Jase.

Loading...