Gitlab Community Edition Instance
Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bnachtw
dsmci
Commits
8aac7c37
Commit
8aac7c37
authored
Jan 07, 2020
by
bnachtw
Browse files
0.6.6.2 add missing recording of severe errors to logfile -- patch by Salvatore
parent
5ca3d20c
Changes
1
Hide whitespace changes
Inline
Side-by-side
perl/dsmci.pl
View file @
8aac7c37
...
...
@@ -57,6 +57,7 @@
# 2019-12-06 0.6.6 changed form of path arrays to "path;SU-switch":
# removing @sund, @suyd, replaced by @allpaths
# 2019-12-10 0.6.6.1 add the number of threads to top of ".all.log" file
# 2019-12-10 0.6.6.2 add missing recording of severe errors to logfile -- patch by Salvatore
#
# important notes
#
...
...
@@ -445,7 +446,7 @@ while (my $line = <$GLOBALLOGFILE>)
elsif
(
$line
=~
/^AN[RS][0-9]{4}W/
)
# Warnings
{
$warncount
++
;
push
@errorlines
,
$line
;
}
elsif
(
$line
=~
/^AN[RS][0-9]{4}S/
)
# Severe Errors
{
$sevecount
++
;
}
{
$sevecount
++
;
push
@errorlines
,
$line
;
}
if
(
$line
=~
/^ANS1329S/
)
# Server-out-of-Space Errors
{
$SooScount
++
;
push
@errorlines
,
$line
;
}
#
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment