Revision 97358b9b
Von Sven Schöling vor mehr als 13 Jahren hinzugefügt
scripts/console | ||
---|---|---|
18 | 18 |
|
19 | 19 |
my $login = shift || $::lx_office_conf{console}{login} || 'demo'; |
20 | 20 |
my $history_file = $::lx_office_conf{console}{history_file} || '/tmp/lxoffice_console_history.log'; # fallback if users is not writable |
21 |
my $debug_file = $::lx_office_conf{Console}{log_file} || '/tmp/lxoffice_console_debug.log'; |
|
21 | 22 |
my $autorun = $::lx_office_conf{console}{autorun}; |
22 | 23 |
|
23 | 24 |
# will be configed eventually |
... | ... | |
58 | 59 |
|
59 | 60 |
package main; |
60 | 61 |
|
61 |
$::lxdebug = LXDebug->new; |
|
62 |
$::lxdebug = LXDebug->new(file => $debug_file);
|
|
62 | 63 |
$::locale = Locale->new($::lx_office_conf{system}->{language}); |
63 | 64 |
$::cgi = CGI->new qw(); |
64 | 65 |
$::form = Form->new; |
Auch abrufbar als: Unified diff
Separates Logging für die Console.
Wenn man mit Userrechten arbeitet gibt es ständig Konflikte welcher Prozess nun
auf das Logfile zugreifen darf. LXDebug ignoriert das still, aber Log4Perl
stirbt mit einer Fehlermeldung. Ab nu gibt es eine separate Logdatei für die
Konsole, und gut ist.
Conflicts: