From cae166231c8623d26b27f0d978a9e58b1186f682 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 28 Aug 2015 07:31:10 -0400 Subject: [PATCH] Bug 14751 - Allow C4::Context->interface to be set to 'sip' or 'commandline' Content-Type: text/plain; charset=utf-8 Koha::Logger allows us to split up logging to separate files based on the interface. However, right now the interface is limited to just 'opac' or 'intranet'. We should extend this to allow the interface to also be set to 'sip' for SIP server logging, and to 'commandline' for cronjobs and all other command line scripts. Signed-off-by: Chris Does what it says on the tin Signed-off-by: Marcel de Rooy --- C4/Context.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Context.pm b/C4/Context.pm index 341438a..f7eb4f6 100644 --- a/C4/Context.pm +++ b/C4/Context.pm @@ -1117,7 +1117,7 @@ sub interface { if (defined $interface) { $interface = lc $interface; - if ($interface eq 'opac' || $interface eq 'intranet') { + if ($interface eq 'opac' || $interface eq 'intranet' || $interface eq 'sip' || $interface eq 'commandline') { $context->{interface} = $interface; } else { warn "invalid interface : '$interface'"; -- 1.7.10.4