mirror of
https://github.com/vale981/stocproc
synced 2025-03-04 17:21:42 -05:00
fix typo: loggin -> logging
This commit is contained in:
parent
e68d875bd8
commit
e04a1bc889
2 changed files with 3 additions and 3 deletions
|
@ -18,7 +18,7 @@ import sys
|
|||
if sys.version_info.major < 3:
|
||||
raise SystemError("no support for Python 2")
|
||||
|
||||
from .stocproc import loggin_setup
|
||||
from .stocproc import logging_setup
|
||||
from .stocproc import StocProc # for typing
|
||||
from .stocproc import StocProc_FFT
|
||||
from .stocproc import StocProc_KLE
|
||||
|
|
|
@ -15,7 +15,7 @@ sh = logging.StreamHandler()
|
|||
sh.setFormatter(logging.Formatter("%(name)s - %(levelname)s - %(message)s"))
|
||||
|
||||
|
||||
def loggin_setup(
|
||||
def logging_setup(
|
||||
sh_level=logging.INFO,
|
||||
sp_log_level=logging.INFO,
|
||||
kle_log_level=logging.INFO,
|
||||
|
@ -44,7 +44,7 @@ def loggin_setup(
|
|||
method_ft.log.setLevel(ft_log_level)
|
||||
|
||||
|
||||
loggin_setup()
|
||||
logging_setup()
|
||||
|
||||
|
||||
class StocProc(abc.ABC):
|
||||
|
|
Loading…
Add table
Reference in a new issue