Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
force-bdss
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
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Adham Hashibon
force-bdss
Merge requests
!108
Introduced log file option
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Introduced log file option
add-logging-file
into
master
Overview
2
Commits
6
Pipelines
0
Changes
3
Merged
Adham Hashibon
requested to merge
add-logging-file
into
master
6 years ago
Overview
2
Commits
6
Pipelines
0
Changes
3
Expand
Created by: stefanoborini
Allows to write a log file instead of relying to stdout/err.
0
0
Merge request reports
Viewing commit
e17374d5
Prev
Next
Show latest version
3 files
+
3
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
e17374d5
Review
· e17374d5
Stefano Borini
authored
6 years ago
force_bdss/io/workflow_reader.py
+
1
−
1
Options
@@ -94,7 +94,7 @@ class WorkflowReader(HasStrictTraits):
wf
.
notification_listeners
[:]
=
\
self
.
_extract_notification_listeners
(
wf_data
)
except
KeyError
as
e
:
log
.
e
xception
(
"
Could not read file {}
"
.
format
(
file
))
log
.
e
rror
(
"
Could not read file {}
"
.
format
(
file
)
,
exc_info
=
True
)
raise
InvalidFileException
(
"
Could not read file {}.
"
"
Unable to find key {}
"
.
format
(
file
,
e
))
return
wf
Loading