Add logger
This commit is contained in:
parent
6dabd05d97
commit
641b8962eb
1 changed files with 5 additions and 2 deletions
|
@ -2,7 +2,11 @@ from numpy.typing import NDArray
|
||||||
from numpy import arange, float64
|
from numpy import arange, float64
|
||||||
from gettext import install
|
from gettext import install
|
||||||
|
|
||||||
install("science_signal")
|
from logging import getLogger
|
||||||
|
|
||||||
|
install(__name__)
|
||||||
|
|
||||||
|
logger = getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
def interpolate_abciss(*signals: "Signal") -> NDArray[float64]:
|
def interpolate_abciss(*signals: "Signal") -> NDArray[float64]:
|
||||||
|
@ -47,5 +51,4 @@ def to_signal(variable: NDArray[float64]):
|
||||||
variable[1],
|
variable[1],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
from science_signal.signal import Signal
|
from science_signal.signal import Signal
|
||||||
|
|
Loading…
Reference in a new issue