Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
distiller
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
llvm
distiller
Commits
30812b87
Commit
30812b87
authored
6 years ago
by
Guy Jacob
Browse files
Options
Downloads
Patches
Plain Diff
Fix un-handled exception traces showing twice in stdout
parent
22e3ea8b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
examples/classifier_compression/compress_classifier.py
+8
-0
8 additions, 0 deletions
examples/classifier_compression/compress_classifier.py
with
8 additions
and
0 deletions
examples/classifier_compression/compress_classifier.py
+
8
−
0
View file @
30812b87
...
@@ -57,6 +57,7 @@ import os
...
@@ -57,6 +57,7 @@ import os
import
sys
import
sys
import
random
import
random
import
traceback
import
traceback
import
logging
from
collections
import
OrderedDict
,
defaultdict
from
collections
import
OrderedDict
,
defaultdict
from
functools
import
partial
from
functools
import
partial
import
numpy
as
np
import
numpy
as
np
...
@@ -790,7 +791,14 @@ if __name__ == '__main__':
...
@@ -790,7 +791,14 @@ if __name__ == '__main__':
print
(
"
\n
-- KeyboardInterrupt --
"
)
print
(
"
\n
-- KeyboardInterrupt --
"
)
except
Exception
as
e
:
except
Exception
as
e
:
if
msglogger
is
not
None
:
if
msglogger
is
not
None
:
# We catch unhandled exceptions here in order to log them to the log file
# However, using the msglogger as-is to do that means we get the trace twice in stdout - once from the
# logging operation and once from re-raising the exception. So we remove the stdout logging handler
# before logging the exception
handlers_bak
=
msglogger
.
handlers
msglogger
.
handlers
=
[
h
for
h
in
msglogger
.
handlers
if
type
(
h
)
!=
logging
.
StreamHandler
]
msglogger
.
error
(
traceback
.
format_exc
())
msglogger
.
error
(
traceback
.
format_exc
())
msglogger
.
handlers
=
handlers_bak
raise
raise
finally
:
finally
:
if
msglogger
is
not
None
:
if
msglogger
is
not
None
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment