Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
HO_homog
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Baptiste Durand
HO_homog
Commits
ee523284
Commit
ee523284
authored
6 years ago
by
Baptiste Durand
Browse files
Options
Downloads
Patches
Plain Diff
Correction of log file path.
parent
bf35d4d1
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
ho_homog/__init__.py
+1
-1
1 addition, 1 deletion
ho_homog/__init__.py
with
1 addition
and
1 deletion
ho_homog/__init__.py
+
1
−
1
View file @
ee523284
...
...
@@ -18,7 +18,7 @@ from logging.handlers import RotatingFileHandler
from
pathlib
import
Path
log_level
=
logging
.
DEBUG
log_path
=
Path
.
home
().
joinpath
(
'
/ho_homog_log/activity.log
'
)
log_path
=
Path
(
'
~
/ho_homog_log/activity.log
'
)
if
not
log_path
.
parent
.
exists
():
log_path
.
parent
.
mkdir
(
mode
=
0o777
,
parents
=
True
)
pckg_logger
=
logging
.
getLogger
(
__name__
)
...
...
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