Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
easy-media-controller
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mihkevich
easy-media-controller
Commits
2636ab3a
Commit
2636ab3a
authored
Nov 27, 2021
by
user
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor my_logger.py
parent
bb695a51
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
+2
-1
my_logger.py
my_logger.py
+2
-1
No files found.
my_logger.py
View file @
2636ab3a
import
logging
import
os
import
traceback
import
time
import
sys
...
...
@@ -6,7 +7,7 @@ import sys
class
Log
:
def
__init__
(
self
):
self
.
start_log_time
=
time
.
localtime
(
time
.
time
())
self
.
logfile
=
"{}/{}_{}_{}_main.log"
.
format
(
sys
.
argv
[
0
][:
41
]
,
self
.
start_log_time
.
tm_mday
,
self
.
start_log_time
.
tm_mon
,
self
.
logfile
=
"{}/{}_{}_{}_main.log"
.
format
(
os
.
path
.
dirname
(
sys
.
argv
[
0
])
,
self
.
start_log_time
.
tm_mday
,
self
.
start_log_time
.
tm_mon
,
self
.
start_log_time
.
tm_year
)
self
.
log
=
logging
.
getLogger
(
"my_log"
)
self
.
log
.
setLevel
(
logging
.
INFO
)
...
...
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