Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
usadelndsoc
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
JYU Condensed Matter Theory
usadelndsoc
Commits
e54b2454
Commit
e54b2454
authored
2 years ago
by
patavirt
Browse files
Options
Downloads
Patches
Plain Diff
usadelndsoc: fix with_log_level
parent
b6105f21
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
usadelndsoc/__init__.py
+16
-9
16 additions, 9 deletions
usadelndsoc/__init__.py
with
16 additions
and
9 deletions
usadelndsoc/__init__.py
+
16
−
9
View file @
e54b2454
# -*- coding:utf-8; eval: (blacken-mode) -*-
import
logging
import
contextlib
logger
=
logging
.
getLogger
(
__name__
)
...
...
@@ -36,15 +35,23 @@ def _init_logging():
logging
.
config
.
dictConfig
(
cfg
)
@contextlib.contextmanager
def
with_log_level
(
level
):
old_level
=
int
(
logger
.
level
)
logger
.
setLevel
(
level
)
try
:
yield
finally
:
logger
.
setLevel
(
old_level
)
import
functools
def
deco
(
func
):
@functools.wraps
(
func
)
def
wrapper
(
*
a
,
**
kw
):
old_level
=
int
(
logger
.
level
)
logger
.
setLevel
(
level
)
try
:
return
func
(
*
a
,
**
kw
)
finally
:
logger
.
setLevel
(
old_level
)
return
wrapper
return
deco
_init_logging
()
del
_init_logging
,
logging
,
contextlib
del
_init_logging
,
logging
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