View | Details | Raw Unified | Return to bug 14167
Collapse All | Expand All

(-)a/debian/scripts/koha-create (+4 lines)
Lines 586-591 eof Link Here
586
    generate_config_file koha-conf-site.xml.in \
586
    generate_config_file koha-conf-site.xml.in \
587
        "/etc/koha/sites/$name/koha-conf.xml"
587
        "/etc/koha/sites/$name/koha-conf.xml"
588
588
589
    # Generate and install the log4perl config file.
590
    generate_config_file log4perl-site.conf.in \
591
        "/etc/koha/sites/$name/log4perl.conf"
592
589
    # Generate and install Zebra config files.
593
    # Generate and install Zebra config files.
590
    generate_config_file zebra-biblios-site.cfg.in \
594
    generate_config_file zebra-biblios-site.cfg.in \
591
        "/etc/koha/sites/$name/zebra-biblios.cfg"
595
        "/etc/koha/sites/$name/zebra-biblios.cfg"
(-)a/debian/templates/koha-conf-site.xml.in (+1 lines)
Lines 282-287 __END_SRU_PUBLICSERVER__ Link Here
282
 <zebra_lockdir>/var/lock/koha/__KOHASITE__</zebra_lockdir>
282
 <zebra_lockdir>/var/lock/koha/__KOHASITE__</zebra_lockdir>
283
 <use_zebra_facets>1</use_zebra_facets>
283
 <use_zebra_facets>1</use_zebra_facets>
284
 <queryparser_config>/etc/koha/searchengine/queryparser.yaml</queryparser_config>
284
 <queryparser_config>/etc/koha/searchengine/queryparser.yaml</queryparser_config>
285
 <log4perl_conf>__KOHA_CONF_DIR__/log4perl.conf</log4perl_conf>
285
286
286
<!-- true type font mapping accoding to type from $font_types in C4/Creators/Lib.pm -->
287
<!-- true type font mapping accoding to type from $font_types in C4/Creators/Lib.pm -->
287
 <ttf>
288
 <ttf>
(-)a/debian/templates/log4perl-site.conf.in (-1 / +13 lines)
Line 0 Link Here
0
- 
1
log4perl.logger.intranet = DEBUG, INTRANET
2
log4perl.appender.INTRANET=Log::Log4perl::Appender::File
3
log4perl.appender.INTRANET.filename=__LOG_DIR__/intranet-error.log
4
log4perl.appender.INTRANET.mode=append
5
log4perl.appender.INTRANET.layout=PatternLayout
6
log4perl.appender.INTRANET.layout.ConversionPattern=[%d] [%p] %m %l %n
7
8
log4perl.logger.opac = DEBUG, OPAC
9
log4perl.appender.OPAC=Log::Log4perl::Appender::File
10
log4perl.appender.OPAC.filename=__LOG_DIR__/opac-error.log
11
log4perl.appender.OPAC.mode=append
12
log4perl.appender.OPAC.layout=PatternLayout
13
log4perl.appender.OPAC.layout.ConversionPattern=[%d] [%p] %m %l %n

Return to bug 14167