diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2016-07-26 14:27:53 -0500 |
---|---|---|
committer | Mitch Jackson <mitch@freeside.biz> | 2018-10-09 12:35:10 -0400 |
commit | 345dfc58a6230d9bc5e88c063a3fc14f3647e68d (patch) | |
tree | 462f3e8b3da6d1ddc17248597bd6d18e3f35c5ec /httemplate | |
parent | d80c2af2c03dc24ea8591459b44be0106aaf9275 (diff) |
RT#38217: Send email when logging conditions are met
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/edit/log_email.html | 4 | ||||
-rw-r--r-- | httemplate/search/log.html | 21 |
2 files changed, 11 insertions, 14 deletions
diff --git a/httemplate/edit/log_email.html b/httemplate/edit/log_email.html index 709a24069..4483190ec 100644 --- a/httemplate/edit/log_email.html +++ b/httemplate/edit/log_email.html @@ -10,8 +10,8 @@ }, { 'field' => 'min_level', 'type' => 'select', - 'options' => [ 0..7 ], - 'labels' => { map {$_ => $FS::Log::LEVELS[$_]} 0..7 }, + 'options' => [ 0..4 ], + 'labels' => { map {$_ => $FS::Log::LEVELS[$_]} 0..4 }, 'curr_value' => scalar($cgi->param('min_level')), }, 'to_addr', diff --git a/httemplate/search/log.html b/httemplate/search/log.html index 9a61a71e1..fdec15b3f 100644 --- a/httemplate/search/log.html +++ b/httemplate/search/log.html @@ -81,15 +81,15 @@ a:visited {text-decoration: none} <TD>Level <& /elements/select.html, field => 'min_level', - options => [ 0..7 ], - labels => { map {$_ => $FS::Log::LEVELS[$_]} 0..7 }, + options => [ 0..4 ], + labels => { map {$_ => $FS::Log::LEVELS[$_]} 0..4 }, curr_value => scalar($cgi->param('min_level')), &> to <& /elements/select.html, field => 'max_level', - options => [ 0..7 ], - labels => { map {$_ => $FS::Log::LEVELS[$_]} 0..7 }, + options => [ 0..4 ], + labels => { map {$_ => $FS::Log::LEVELS[$_]} 0..4 }, curr_value => scalar($cgi->param('max_level')), &> </TD> @@ -192,14 +192,11 @@ my $object_link_sub = sub { }; my @colors = ( - '404040', #debug - '0000aa', #info - '00aa00', #notice - 'aa0066', #warning - '000000', #error - 'aa0000', #critical - 'ff0000', #alert - 'ff0000', #emergency + '404040', #debug, gray + '000000', #info, black + '0000aa', #warning, blue + 'aa0066', #error, purple + 'ff0000', #critical, red ); my $color_sub = sub { $colors[ $_[0]->level ]; }; |