summaryrefslogtreecommitdiff
path: root/rt/sbin/rt-email-dashboards.in
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2016-09-24 10:28:06 -0700
committerIvan Kohler <ivan@freeside.biz>2016-09-24 10:28:06 -0700
commit7322f2afedcc2f427e997d1535a503613a83f088 (patch)
tree6c0d4e68906bfdaaff2a2067620e222611b979ea /rt/sbin/rt-email-dashboards.in
parentae14e320388fa5e7f400bff1c251ef885b7952e6 (diff)
rt 4.2.13 ticket#13852
Diffstat (limited to 'rt/sbin/rt-email-dashboards.in')
-rw-r--r--rt/sbin/rt-email-dashboards.in11
1 files changed, 9 insertions, 2 deletions
diff --git a/rt/sbin/rt-email-dashboards.in b/rt/sbin/rt-email-dashboards.in
index 1daba86..e828002 100644
--- a/rt/sbin/rt-email-dashboards.in
+++ b/rt/sbin/rt-email-dashboards.in
@@ -3,7 +3,7 @@
#
# COPYRIGHT:
#
-# This software is Copyright (c) 1996-2015 Best Practical Solutions, LLC
+# This software is Copyright (c) 1996-2016 Best Practical Solutions, LLC
# <sales@bestpractical.com>
#
# (Except where explicitly superseded by other copyright notices)
@@ -70,7 +70,7 @@ BEGIN { # BEGIN RT CMD BOILERPLATE
my %opts;
use Getopt::Long;
GetOptions( \%opts,
- "help|h", "dryrun", "time=i", "epoch=i", "all"
+ "help|h", "dryrun", "time=i", "epoch=i", "all", "log=s"
);
if ($opts{'help'}) {
@@ -86,6 +86,9 @@ RT::Interface::CLI->import(qw{ loc });
# Load the config file
RT::LoadConfig();
+# adjust logging to the screen according to options
+RT->Config->Set( LogToSTDERR => $opts{log} ) if $opts{log};
+
# Connect to the database and get RT::SystemUser and RT::Nobody loaded
RT::Init();
@@ -156,6 +159,10 @@ Back-compat for --time SECONDS.
Ignore subscription frequency when considering each dashboard (should only be
used with --dryrun for testing and debugging)
+=item --log LEVEL
+
+Adjust LogToSTDERR config option
+
=back
=cut