logger-36 2024.14__py3-none-any.whl → 2024.16__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- logger_36/__init__.py +55 -32
- logger_36/catalog/config/console_rich.py +58 -37
- logger_36/catalog/handler/console.py +64 -42
- logger_36/catalog/handler/console_rich.py +67 -45
- logger_36/catalog/handler/file.py +67 -45
- logger_36/catalog/handler/generic.py +72 -51
- logger_36/catalog/logging/chronos.py +56 -33
- logger_36/catalog/logging/exception.py +74 -0
- logger_36/catalog/logging/gpu.py +56 -33
- logger_36/catalog/logging/memory.py +66 -39
- logger_36/catalog/logging/system.py +56 -32
- logger_36/config/issue.py +51 -30
- logger_36/config/memory.py +51 -30
- logger_36/config/message.py +51 -30
- logger_36/config/system.py +51 -30
- logger_36/constant/error.py +51 -30
- logger_36/constant/generic.py +51 -30
- logger_36/constant/handler.py +51 -30
- logger_36/constant/issue.py +51 -30
- logger_36/constant/logger.py +51 -30
- logger_36/constant/memory.py +51 -30
- logger_36/constant/message.py +51 -30
- logger_36/constant/record.py +51 -30
- logger_36/constant/system.py +64 -36
- logger_36/instance/logger.py +55 -0
- logger_36/instance/loggers.py +56 -0
- logger_36/main.py +61 -33
- logger_36/task/format/memory.py +52 -30
- logger_36/task/format/message.py +52 -30
- logger_36/task/format/rule.py +51 -30
- logger_36/task/inspection.py +52 -30
- logger_36/task/measure/chronos.py +52 -30
- logger_36/task/measure/memory.py +52 -30
- logger_36/task/storage.py +60 -38
- logger_36/type/{extension.py → handler.py} +59 -37
- logger_36/type/issue.py +60 -31
- logger_36/type/logger.py +80 -52
- logger_36/type/loggers.py +78 -0
- logger_36/version.py +53 -32
- {logger_36-2024.14.dist-info → logger_36-2024.16.dist-info}/METADATA +48 -30
- logger_36-2024.16.dist-info/RECORD +43 -0
- {logger_36-2024.14.dist-info → logger_36-2024.16.dist-info}/WHEEL +1 -1
- logger_36/instance.py +0 -34
- logger_36-2024.14.dist-info/RECORD +0 -40
- {logger_36-2024.14.dist-info → logger_36-2024.16.dist-info}/top_level.txt +0 -0
logger_36/type/logger.py
CHANGED
@@ -1,37 +1,10 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
# modify and/ or redistribute the software under the terms of the CeCILL
|
9
|
-
# license as circulated by CEA, CNRS and INRIA at the following URL
|
10
|
-
# "http://www.cecill.info".
|
11
|
-
#
|
12
|
-
# As a counterpart to the access to the source code and rights to copy,
|
13
|
-
# modify and redistribute granted by the license, users are provided only
|
14
|
-
# with a limited warranty and the software's author, the holder of the
|
15
|
-
# economic rights, and the successive licensors have only limited
|
16
|
-
# liability.
|
17
|
-
#
|
18
|
-
# In this respect, the user's attention is drawn to the risks associated
|
19
|
-
# with loading, using, modifying and/or developing or reproducing the
|
20
|
-
# software by the user in light of its specific status of free software,
|
21
|
-
# that may mean that it is complicated to manipulate, and that also
|
22
|
-
# therefore means that it is reserved for developers and experienced
|
23
|
-
# professionals having in-depth computer knowledge. Users are therefore
|
24
|
-
# encouraged to load and test the software's suitability as regards their
|
25
|
-
# requirements in conditions enabling the security of their systems and/or
|
26
|
-
# data to be ensured and, more generally, to use and operate it in the
|
27
|
-
# same conditions as regards security.
|
28
|
-
#
|
29
|
-
# The fact that you are presently reading this means that you have had
|
30
|
-
# knowledge of the CeCILL license and that you accept its terms.
|
31
|
-
|
32
|
-
from __future__ import annotations
|
33
|
-
|
34
|
-
import dataclasses as dtcl
|
1
|
+
"""
|
2
|
+
Copyright CNRS/Inria/UniCA
|
3
|
+
Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
|
4
|
+
SEE COPYRIGHT NOTICE BELOW
|
5
|
+
"""
|
6
|
+
|
7
|
+
import dataclasses as d
|
35
8
|
import logging as lggg
|
36
9
|
import sys as sstm
|
37
10
|
import traceback as tbck
|
@@ -53,6 +26,7 @@ from logger_36.constant.logger import (
|
|
53
26
|
logger_handle_h,
|
54
27
|
)
|
55
28
|
from logger_36.constant.memory import UNKNOWN_MEMORY_USAGE
|
29
|
+
from logger_36.constant.message import expected_op_h
|
56
30
|
from logger_36.constant.record import SHOW_MEMORY_ATTR, SHOW_W_RULE_ATTR
|
57
31
|
from logger_36.task.format.memory import (
|
58
32
|
FormattedUsageWithAutoUnit as FormattedMemoryUsage,
|
@@ -63,33 +37,31 @@ from logger_36.task.measure.memory import CurrentUsage as CurrentMemoryUsage
|
|
63
37
|
from logger_36.type.issue import NewIssue, issue_t
|
64
38
|
|
65
39
|
|
66
|
-
@
|
40
|
+
@d.dataclass(slots=True, repr=False, eq=False)
|
67
41
|
class logger_t(lggg.Logger):
|
68
|
-
|
69
|
-
level:
|
70
|
-
activate_wrn_interceptions:
|
42
|
+
name_: d.InitVar[str] = LOGGER_NAME
|
43
|
+
level: d.InitVar[int] = lggg.NOTSET
|
44
|
+
activate_wrn_interceptions: d.InitVar[bool] = True
|
71
45
|
exit_on_error: bool = False
|
72
46
|
# Must not be False until at least one handler has been added.
|
73
47
|
should_hold_messages: bool = True
|
74
48
|
|
75
|
-
on_hold: list[lggg.LogRecord] =
|
76
|
-
last_message_date: str =
|
77
|
-
any_handler_shows_memory: bool =
|
78
|
-
memory_usages: list[tuple[str, int]] =
|
79
|
-
context_levels: list[str] =
|
80
|
-
staged_issues: list[issue_t] =
|
81
|
-
intercepted_wrn_handle: logger_handle_h | None =
|
82
|
-
|
83
|
-
)
|
84
|
-
intercepted_log_handles: dict[str, logger_handle_h] = dtcl.field(
|
49
|
+
on_hold: list[lggg.LogRecord] = d.field(init=False, default_factory=list)
|
50
|
+
last_message_date: str = d.field(init=False, default="")
|
51
|
+
any_handler_shows_memory: bool = d.field(init=False, default=False)
|
52
|
+
memory_usages: list[tuple[str, int]] = d.field(init=False, default_factory=list)
|
53
|
+
context_levels: list[str] = d.field(init=False, default_factory=list)
|
54
|
+
staged_issues: list[issue_t] = d.field(init=False, default_factory=list)
|
55
|
+
intercepted_wrn_handle: logger_handle_h | None = d.field(init=False, default=None)
|
56
|
+
intercepted_log_handles: dict[str, logger_handle_h] = d.field(
|
85
57
|
init=False, default_factory=dict
|
86
58
|
)
|
87
59
|
|
88
60
|
def __post_init__(
|
89
|
-
self,
|
61
|
+
self, name_: str, level: int, activate_wrn_interceptions: bool
|
90
62
|
) -> None:
|
91
63
|
""""""
|
92
|
-
lggg.Logger.__init__(self,
|
64
|
+
lggg.Logger.__init__(self, name_)
|
93
65
|
self.setLevel(level)
|
94
66
|
self.propagate = False
|
95
67
|
|
@@ -246,7 +218,7 @@ class logger_t(lggg.Logger):
|
|
246
218
|
""""""
|
247
219
|
self.context_levels.append(new_level)
|
248
220
|
|
249
|
-
def AddedContextLevel(self, new_level: str, /) ->
|
221
|
+
def AddedContextLevel(self, new_level: str, /) -> h.Self:
|
250
222
|
"""
|
251
223
|
Meant to be used as:
|
252
224
|
with self.AddedContextLevel("new level"):
|
@@ -262,11 +234,19 @@ class logger_t(lggg.Logger):
|
|
262
234
|
*,
|
263
235
|
actual: h.Any = NOT_PASSED,
|
264
236
|
expected: h.Any | None = None,
|
237
|
+
expected_op: expected_op_h = "=",
|
238
|
+
with_final_dot: bool = False,
|
265
239
|
) -> None:
|
266
240
|
""""""
|
267
241
|
context = ISSUE_CONTEXT_SEPARATOR.join(self.context_levels)
|
268
242
|
issue = NewIssue(
|
269
|
-
context,
|
243
|
+
context,
|
244
|
+
ISSUE_CONTEXT_END,
|
245
|
+
message,
|
246
|
+
actual=actual,
|
247
|
+
expected=expected,
|
248
|
+
expected_op=expected_op,
|
249
|
+
with_final_dot=with_final_dot,
|
270
250
|
)
|
271
251
|
self.staged_issues.append(issue)
|
272
252
|
|
@@ -313,6 +293,7 @@ class logger_t(lggg.Logger):
|
|
313
293
|
print("\n".join(lines), file=sstm.stderr)
|
314
294
|
sstm.exit(1)
|
315
295
|
|
296
|
+
level: int
|
316
297
|
self.log(level, issues, stacklevel=2)
|
317
298
|
self.staged_issues.clear()
|
318
299
|
|
@@ -378,3 +359,50 @@ def _HandleForInterceptions(
|
|
378
359
|
interceptor.handle(duplicate)
|
379
360
|
|
380
361
|
return handle_p
|
362
|
+
|
363
|
+
|
364
|
+
"""
|
365
|
+
COPYRIGHT NOTICE
|
366
|
+
|
367
|
+
This software is governed by the CeCILL license under French law and
|
368
|
+
abiding by the rules of distribution of free software. You can use,
|
369
|
+
modify and/ or redistribute the software under the terms of the CeCILL
|
370
|
+
license as circulated by CEA, CNRS and INRIA at the following URL
|
371
|
+
"http://www.cecill.info".
|
372
|
+
|
373
|
+
As a counterpart to the access to the source code and rights to copy,
|
374
|
+
modify and redistribute granted by the license, users are provided only
|
375
|
+
with a limited warranty and the software's author, the holder of the
|
376
|
+
economic rights, and the successive licensors have only limited
|
377
|
+
liability.
|
378
|
+
|
379
|
+
In this respect, the user's attention is drawn to the risks associated
|
380
|
+
with loading, using, modifying and/or developing or reproducing the
|
381
|
+
software by the user in light of its specific status of free software,
|
382
|
+
that may mean that it is complicated to manipulate, and that also
|
383
|
+
therefore means that it is reserved for developers and experienced
|
384
|
+
professionals having in-depth computer knowledge. Users are therefore
|
385
|
+
encouraged to load and test the software's suitability as regards their
|
386
|
+
requirements in conditions enabling the security of their systems and/or
|
387
|
+
data to be ensured and, more generally, to use and operate it in the
|
388
|
+
same conditions as regards security.
|
389
|
+
|
390
|
+
The fact that you are presently reading this means that you have had
|
391
|
+
knowledge of the CeCILL license and that you accept its terms.
|
392
|
+
|
393
|
+
SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
|
394
|
+
|
395
|
+
This software is being developed by Eric Debreuve, a CNRS employee and
|
396
|
+
member of team Morpheme.
|
397
|
+
Team Morpheme is a joint team between Inria, CNRS, and UniCA.
|
398
|
+
It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
|
399
|
+
I3S, and Laboratory iBV.
|
400
|
+
|
401
|
+
CNRS: https://www.cnrs.fr/index.php/en
|
402
|
+
Inria: https://www.inria.fr/en/
|
403
|
+
UniCA: https://univ-cotedazur.eu/
|
404
|
+
Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
|
405
|
+
I3S: https://www.i3s.unice.fr/en/
|
406
|
+
iBV: http://ibv.unice.fr/
|
407
|
+
Team Morpheme: https://team.inria.fr/morpheme/
|
408
|
+
"""
|
@@ -0,0 +1,78 @@
|
|
1
|
+
"""
|
2
|
+
Copyright CNRS/Inria/UniCA
|
3
|
+
Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
|
4
|
+
SEE COPYRIGHT NOTICE BELOW
|
5
|
+
"""
|
6
|
+
|
7
|
+
import dataclasses as d
|
8
|
+
import typing as h
|
9
|
+
|
10
|
+
from logger_36.type.logger import logger_t
|
11
|
+
|
12
|
+
|
13
|
+
@d.dataclass(slots=True, repr=False, eq=False)
|
14
|
+
class loggers_t(dict[h.Hashable, logger_t]):
|
15
|
+
active: logger_t | None = d.field(init=False, default=None)
|
16
|
+
|
17
|
+
def AddNew(self, uid: h.Hashable, /) -> None:
|
18
|
+
""""""
|
19
|
+
self.Add(uid, logger_t())
|
20
|
+
|
21
|
+
def Add(self, uid: h.Hashable, logger: logger_t, /) -> None:
|
22
|
+
""""""
|
23
|
+
if uid in self:
|
24
|
+
raise NameError(f"Logger with name/identity {uid} already exists.")
|
25
|
+
|
26
|
+
self[uid] = logger
|
27
|
+
self.active = logger
|
28
|
+
|
29
|
+
def SetActive(self, uid: h.Hashable, /) -> None:
|
30
|
+
""""""
|
31
|
+
self.active = self[uid]
|
32
|
+
|
33
|
+
|
34
|
+
"""
|
35
|
+
COPYRIGHT NOTICE
|
36
|
+
|
37
|
+
This software is governed by the CeCILL license under French law and
|
38
|
+
abiding by the rules of distribution of free software. You can use,
|
39
|
+
modify and/ or redistribute the software under the terms of the CeCILL
|
40
|
+
license as circulated by CEA, CNRS and INRIA at the following URL
|
41
|
+
"http://www.cecill.info".
|
42
|
+
|
43
|
+
As a counterpart to the access to the source code and rights to copy,
|
44
|
+
modify and redistribute granted by the license, users are provided only
|
45
|
+
with a limited warranty and the software's author, the holder of the
|
46
|
+
economic rights, and the successive licensors have only limited
|
47
|
+
liability.
|
48
|
+
|
49
|
+
In this respect, the user's attention is drawn to the risks associated
|
50
|
+
with loading, using, modifying and/or developing or reproducing the
|
51
|
+
software by the user in light of its specific status of free software,
|
52
|
+
that may mean that it is complicated to manipulate, and that also
|
53
|
+
therefore means that it is reserved for developers and experienced
|
54
|
+
professionals having in-depth computer knowledge. Users are therefore
|
55
|
+
encouraged to load and test the software's suitability as regards their
|
56
|
+
requirements in conditions enabling the security of their systems and/or
|
57
|
+
data to be ensured and, more generally, to use and operate it in the
|
58
|
+
same conditions as regards security.
|
59
|
+
|
60
|
+
The fact that you are presently reading this means that you have had
|
61
|
+
knowledge of the CeCILL license and that you accept its terms.
|
62
|
+
|
63
|
+
SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
|
64
|
+
|
65
|
+
This software is being developed by Eric Debreuve, a CNRS employee and
|
66
|
+
member of team Morpheme.
|
67
|
+
Team Morpheme is a joint team between Inria, CNRS, and UniCA.
|
68
|
+
It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
|
69
|
+
I3S, and Laboratory iBV.
|
70
|
+
|
71
|
+
CNRS: https://www.cnrs.fr/index.php/en
|
72
|
+
Inria: https://www.inria.fr/en/
|
73
|
+
UniCA: https://univ-cotedazur.eu/
|
74
|
+
Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
|
75
|
+
I3S: https://www.i3s.unice.fr/en/
|
76
|
+
iBV: http://ibv.unice.fr/
|
77
|
+
Team Morpheme: https://team.inria.fr/morpheme/
|
78
|
+
"""
|
logger_36/version.py
CHANGED
@@ -1,32 +1,53 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
1
|
+
"""
|
2
|
+
Copyright CNRS/Inria/UniCA
|
3
|
+
Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
|
4
|
+
SEE COPYRIGHT NOTICE BELOW
|
5
|
+
"""
|
6
|
+
|
7
|
+
__version__ = "2024.16"
|
8
|
+
|
9
|
+
"""
|
10
|
+
COPYRIGHT NOTICE
|
11
|
+
|
12
|
+
This software is governed by the CeCILL license under French law and
|
13
|
+
abiding by the rules of distribution of free software. You can use,
|
14
|
+
modify and/ or redistribute the software under the terms of the CeCILL
|
15
|
+
license as circulated by CEA, CNRS and INRIA at the following URL
|
16
|
+
"http://www.cecill.info".
|
17
|
+
|
18
|
+
As a counterpart to the access to the source code and rights to copy,
|
19
|
+
modify and redistribute granted by the license, users are provided only
|
20
|
+
with a limited warranty and the software's author, the holder of the
|
21
|
+
economic rights, and the successive licensors have only limited
|
22
|
+
liability.
|
23
|
+
|
24
|
+
In this respect, the user's attention is drawn to the risks associated
|
25
|
+
with loading, using, modifying and/or developing or reproducing the
|
26
|
+
software by the user in light of its specific status of free software,
|
27
|
+
that may mean that it is complicated to manipulate, and that also
|
28
|
+
therefore means that it is reserved for developers and experienced
|
29
|
+
professionals having in-depth computer knowledge. Users are therefore
|
30
|
+
encouraged to load and test the software's suitability as regards their
|
31
|
+
requirements in conditions enabling the security of their systems and/or
|
32
|
+
data to be ensured and, more generally, to use and operate it in the
|
33
|
+
same conditions as regards security.
|
34
|
+
|
35
|
+
The fact that you are presently reading this means that you have had
|
36
|
+
knowledge of the CeCILL license and that you accept its terms.
|
37
|
+
|
38
|
+
SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
|
39
|
+
|
40
|
+
This software is being developed by Eric Debreuve, a CNRS employee and
|
41
|
+
member of team Morpheme.
|
42
|
+
Team Morpheme is a joint team between Inria, CNRS, and UniCA.
|
43
|
+
It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
|
44
|
+
I3S, and Laboratory iBV.
|
45
|
+
|
46
|
+
CNRS: https://www.cnrs.fr/index.php/en
|
47
|
+
Inria: https://www.inria.fr/en/
|
48
|
+
UniCA: https://univ-cotedazur.eu/
|
49
|
+
Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
|
50
|
+
I3S: https://www.i3s.unice.fr/en/
|
51
|
+
iBV: http://ibv.unice.fr/
|
52
|
+
Team Morpheme: https://team.inria.fr/morpheme/
|
53
|
+
"""
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: logger-36
|
3
|
-
Version: 2024.
|
3
|
+
Version: 2024.16
|
4
4
|
Summary: Simple logger with a catalog of handlers
|
5
5
|
Home-page: https://src.koda.cnrs.fr/eric.debreuve/logger-36/
|
6
6
|
Author: Eric Debreuve
|
@@ -19,35 +19,8 @@ Description-Content-Type: text/x-rst
|
|
19
19
|
|
20
20
|
..
|
21
21
|
Copyright CNRS/Inria/UniCA
|
22
|
-
Contributor(s): Eric Debreuve (since 2023
|
23
|
-
|
24
|
-
eric.debreuve@cnrs.fr
|
25
|
-
|
26
|
-
This software is governed by the CeCILL license under French law and
|
27
|
-
abiding by the rules of distribution of free software. You can use,
|
28
|
-
modify and/ or redistribute the software under the terms of the CeCILL
|
29
|
-
license as circulated by CEA, CNRS and INRIA at the following URL
|
30
|
-
"http://www.cecill.info".
|
31
|
-
|
32
|
-
As a counterpart to the access to the source code and rights to copy,
|
33
|
-
modify and redistribute granted by the license, users are provided only
|
34
|
-
with a limited warranty and the software's author, the holder of the
|
35
|
-
economic rights, and the successive licensors have only limited
|
36
|
-
liability.
|
37
|
-
|
38
|
-
In this respect, the user's attention is drawn to the risks associated
|
39
|
-
with loading, using, modifying and/or developing or reproducing the
|
40
|
-
software by the user in light of its specific status of free software,
|
41
|
-
that may mean that it is complicated to manipulate, and that also
|
42
|
-
therefore means that it is reserved for developers and experienced
|
43
|
-
professionals having in-depth computer knowledge. Users are therefore
|
44
|
-
encouraged to load and test the software's suitability as regards their
|
45
|
-
requirements in conditions enabling the security of their systems and/or
|
46
|
-
data to be ensured and, more generally, to use and operate it in the
|
47
|
-
same conditions as regards security.
|
48
|
-
|
49
|
-
The fact that you are presently reading this means that you have had
|
50
|
-
knowledge of the CeCILL license and that you accept its terms.
|
22
|
+
Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
|
23
|
+
SEE COPYRIGHT NOTICE BELOW
|
51
24
|
|
52
25
|
.. |PROJECT_NAME| replace:: logger-36
|
53
26
|
.. |SHORT_DESCRIPTION| replace:: Simple logger with a catalog of handlers
|
@@ -123,3 +96,48 @@ The project is developed with `PyCharm Community <https://www.jetbrains.com/pych
|
|
123
96
|
The code is formatted by `Black <https://github.com/psf/black/>`_, *The Uncompromising Code Formatter*.
|
124
97
|
|
125
98
|
The imports are ordered by `isort <https://github.com/timothycrosley/isort/>`_... *your imports, so you don't have to*.
|
99
|
+
|
100
|
+
..
|
101
|
+
COPYRIGHT NOTICE
|
102
|
+
|
103
|
+
This software is governed by the CeCILL license under French law and
|
104
|
+
abiding by the rules of distribution of free software. You can use,
|
105
|
+
modify and/ or redistribute the software under the terms of the CeCILL
|
106
|
+
license as circulated by CEA, CNRS and INRIA at the following URL
|
107
|
+
"http://www.cecill.info".
|
108
|
+
|
109
|
+
As a counterpart to the access to the source code and rights to copy,
|
110
|
+
modify and redistribute granted by the license, users are provided only
|
111
|
+
with a limited warranty and the software's author, the holder of the
|
112
|
+
economic rights, and the successive licensors have only limited
|
113
|
+
liability.
|
114
|
+
|
115
|
+
In this respect, the user's attention is drawn to the risks associated
|
116
|
+
with loading, using, modifying and/or developing or reproducing the
|
117
|
+
software by the user in light of its specific status of free software,
|
118
|
+
that may mean that it is complicated to manipulate, and that also
|
119
|
+
therefore means that it is reserved for developers and experienced
|
120
|
+
professionals having in-depth computer knowledge. Users are therefore
|
121
|
+
encouraged to load and test the software's suitability as regards their
|
122
|
+
requirements in conditions enabling the security of their systems and/or
|
123
|
+
data to be ensured and, more generally, to use and operate it in the
|
124
|
+
same conditions as regards security.
|
125
|
+
|
126
|
+
The fact that you are presently reading this means that you have had
|
127
|
+
knowledge of the CeCILL license and that you accept its terms.
|
128
|
+
|
129
|
+
SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
|
130
|
+
|
131
|
+
This software is being developed by Eric Debreuve, a CNRS employee and
|
132
|
+
member of team Morpheme.
|
133
|
+
Team Morpheme is a joint team between Inria, CNRS, and UniCA.
|
134
|
+
It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
|
135
|
+
I3S, and Laboratory iBV.
|
136
|
+
|
137
|
+
CNRS: https://www.cnrs.fr/index.php/en
|
138
|
+
Inria: https://www.inria.fr/en/
|
139
|
+
UniCA: https://univ-cotedazur.eu/
|
140
|
+
Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
|
141
|
+
I3S: https://www.i3s.unice.fr/en/
|
142
|
+
iBV: http://ibv.unice.fr/
|
143
|
+
Team Morpheme: https://team.inria.fr/morpheme/
|
@@ -0,0 +1,43 @@
|
|
1
|
+
logger_36/__init__.py,sha256=4YRMxJfQXMIfOXRBfAlXj8B-uBg1lVnC4nmTul7xsxs,2495
|
2
|
+
logger_36/main.py,sha256=kDL0cWE0nQXt4cL12fupCWRvbmbd-Kf8rydeSUo-u7o,7619
|
3
|
+
logger_36/version.py,sha256=AqbBGvWxCEd0gY2SbtNAT6fPW-QGgr4zW5Rs4cwwjkA,2206
|
4
|
+
logger_36/catalog/config/console_rich.py,sha256=1FWbfJK_DTmnnf1qytJ8O949dh5Bmkjb8MqbkaGN-AY,2718
|
5
|
+
logger_36/catalog/handler/console.py,sha256=1WLtmxZCBj0AxLu5xey3VIVBKm02bp-Rc-eZOiFtXnU,3893
|
6
|
+
logger_36/catalog/handler/console_rich.py,sha256=0qLbG2spohHT9K-mxpUNurSI4ct8o8F3QWI3PweLKtM,7347
|
7
|
+
logger_36/catalog/handler/file.py,sha256=GS5nsfp0j0mzPak7vz8E7U4e5H95os_qfDjdM1Ywf0g,4345
|
8
|
+
logger_36/catalog/handler/generic.py,sha256=COBZfZ-WqikLvnHVnqwabLoeAhVQrQTHIkMUiYqSJnU,7036
|
9
|
+
logger_36/catalog/logging/chronos.py,sha256=eLqQw8N9vaGO23OCf5RrYDPbUeu7epUvDt9rH-dN7i0,2522
|
10
|
+
logger_36/catalog/logging/exception.py,sha256=sL7sZ_bjNoof2xgOXvBzAi2xHrj7Pmjfkfhjzuy6NGs,2708
|
11
|
+
logger_36/catalog/logging/gpu.py,sha256=vUFSP17e7U4nenMi5IMlDiP3cZvXe6nqEDpoqzTavdg,3490
|
12
|
+
logger_36/catalog/logging/memory.py,sha256=Zel_UCnHqGAqf_YuKpvjt0OIOo9vwKYpFM9g_2bjir0,4790
|
13
|
+
logger_36/catalog/logging/system.py,sha256=FQ3w1zIN1ab6y8QYtcYDULhyJYy4iwTwHoDs8Mi2IdQ,3159
|
14
|
+
logger_36/config/issue.py,sha256=G-i5p6lhZCLAOa-VTMyL9ZonvGCvhdoQ5KZdSWgP-FU,2267
|
15
|
+
logger_36/config/memory.py,sha256=yCX5phsB_KJMr5xHpVUeOHFhAA7p_8yahP3X28VndOY,2217
|
16
|
+
logger_36/config/message.py,sha256=SP5hq83WU2gr1G4drne-HLRwArH_ciLzE8ffUGLutc0,2649
|
17
|
+
logger_36/config/system.py,sha256=HD8ZuwsXhEAExeZrww8YoDkQGMs4T5RDqQMb1W4qVgc,2477
|
18
|
+
logger_36/constant/error.py,sha256=1gdnCwUu3d3ThL4AKxzjn7ijSTBWlr2g-8cAKbubl4A,2825
|
19
|
+
logger_36/constant/generic.py,sha256=t6aRb66_NHwMhR1p7BZ4QXTU2jpLz-H5YAL4PuMtKx8,2244
|
20
|
+
logger_36/constant/handler.py,sha256=HM8qCSEMGNMCzddjUUNBPGL-3d0qU-EmG5eW4ZQHW6A,2311
|
21
|
+
logger_36/constant/issue.py,sha256=48c3QGNzgRcvQOenlp77_wAU4znZfLkQEdT2oE_CvMs,2286
|
22
|
+
logger_36/constant/logger.py,sha256=0GhemAQ_YBiRO5WQBuNTczuejyVu2IYCsgqPRIbL8es,2780
|
23
|
+
logger_36/constant/memory.py,sha256=ZL1MwbdtNsrCrOwzEyfTsfOoOsRBTJtbbf3otHGnxXo,2343
|
24
|
+
logger_36/constant/message.py,sha256=RKQL-YmEDds5q7HuHTeDebz7_h3zWDX0PNxu-RTwL2I,2714
|
25
|
+
logger_36/constant/record.py,sha256=zebZYR4buX1lGfc7IyuvEh8zOpk7hx0aS4pJ12H0flI,2311
|
26
|
+
logger_36/constant/system.py,sha256=JTx7ft9W-K2bv1TRtEjlqaZwLN372BEW7Dxp1dJfcGI,2585
|
27
|
+
logger_36/instance/logger.py,sha256=ttKjl9MD7FUjqCWjv5w2hmmpDYxgaORcYf9NaaE9W_M,2246
|
28
|
+
logger_36/instance/loggers.py,sha256=RCWpC1NPAf6vXnFc9NqsSALv-x-FEzcH6k_OlxTxeQk,2251
|
29
|
+
logger_36/task/inspection.py,sha256=f9VkVrwMJ_ixV9rFu3XUNpmCbEgoo1tssqd2nMeGYLI,5028
|
30
|
+
logger_36/task/storage.py,sha256=yxpdAVbN6l4Drn3RFk1ESlKVBYTkliBNgxAR91eGRYs,5646
|
31
|
+
logger_36/task/format/memory.py,sha256=ECOdHjdxIqXivOwtcmwpLDMYUrutIeOTCn1L4d3-U8k,4241
|
32
|
+
logger_36/task/format/message.py,sha256=X9qtXPxhXgCIjnRYBJn93vj4rW4I-7dJP6LaXD5Qu2o,4142
|
33
|
+
logger_36/task/format/rule.py,sha256=YEe8wG_QLy9vRZqmT2bWlvKT-Dxp4pGaZVmEuwwODyE,2598
|
34
|
+
logger_36/task/measure/chronos.py,sha256=t-y0bVm1SmF-3wI9pR9Bp6-qzVlsE94fZTZr5a_hZUA,2884
|
35
|
+
logger_36/task/measure/memory.py,sha256=CW6RDkdBOjoTeNjkg9g1laqsMSaunBnr-6qsxZ76CkA,2505
|
36
|
+
logger_36/type/handler.py,sha256=baBJGen9MyQmoTMibSSy6PGyCxLv4Hbq5akIyhkt0u4,8284
|
37
|
+
logger_36/type/issue.py,sha256=cB8pSSJg9aqFPQ6yJr4TC2kJbngKGK8Hyq4ATBm6jAc,2973
|
38
|
+
logger_36/type/logger.py,sha256=TpE8OBS5YvnI6OO-aWwUWnjwEnuGW9toleVQs3pfhnk,14268
|
39
|
+
logger_36/type/loggers.py,sha256=znqxWBnfQxvkg3VUfbTUvt3S6Kq0DAzWWepxQDt9suI,2871
|
40
|
+
logger_36-2024.16.dist-info/METADATA,sha256=sj0OVpLt7e8MXlNsJhlDWSi9fiIPYnXpbhSf7yRBpVY,6277
|
41
|
+
logger_36-2024.16.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
|
42
|
+
logger_36-2024.16.dist-info/top_level.txt,sha256=sM95BTMWmslEEgR_1pzwZsOeSp8C_QBiu8ImbFr0XLc,10
|
43
|
+
logger_36-2024.16.dist-info/RECORD,,
|
logger_36/instance.py
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
# Copyright CNRS/Inria/UniCA
|
2
|
-
# Contributor(s): Eric Debreuve (since 2023)
|
3
|
-
#
|
4
|
-
# eric.debreuve@cnrs.fr
|
5
|
-
#
|
6
|
-
# This software is governed by the CeCILL license under French law and
|
7
|
-
# abiding by the rules of distribution of free software. You can use,
|
8
|
-
# modify and/ or redistribute the software under the terms of the CeCILL
|
9
|
-
# license as circulated by CEA, CNRS and INRIA at the following URL
|
10
|
-
# "http://www.cecill.info".
|
11
|
-
#
|
12
|
-
# As a counterpart to the access to the source code and rights to copy,
|
13
|
-
# modify and redistribute granted by the license, users are provided only
|
14
|
-
# with a limited warranty and the software's author, the holder of the
|
15
|
-
# economic rights, and the successive licensors have only limited
|
16
|
-
# liability.
|
17
|
-
#
|
18
|
-
# In this respect, the user's attention is drawn to the risks associated
|
19
|
-
# with loading, using, modifying and/or developing or reproducing the
|
20
|
-
# software by the user in light of its specific status of free software,
|
21
|
-
# that may mean that it is complicated to manipulate, and that also
|
22
|
-
# therefore means that it is reserved for developers and experienced
|
23
|
-
# professionals having in-depth computer knowledge. Users are therefore
|
24
|
-
# encouraged to load and test the software's suitability as regards their
|
25
|
-
# requirements in conditions enabling the security of their systems and/or
|
26
|
-
# data to be ensured and, more generally, to use and operate it in the
|
27
|
-
# same conditions as regards security.
|
28
|
-
#
|
29
|
-
# The fact that you are presently reading this means that you have had
|
30
|
-
# knowledge of the CeCILL license and that you accept its terms.
|
31
|
-
|
32
|
-
from logger_36.type.logger import logger_t
|
33
|
-
|
34
|
-
LOGGER = logger_t()
|
@@ -1,40 +0,0 @@
|
|
1
|
-
logger_36/__init__.py,sha256=67ZAWtUx9Qy8Yn-tLQkOIEO6Z9U-8jhfm-tqNjjeFPU,1758
|
2
|
-
logger_36/instance.py,sha256=wAVty29f24SCs4FRL600QySlA_WeLUM78p4t_Ni-LzA,1618
|
3
|
-
logger_36/main.py,sha256=H0MW3hZXdXHjTnliH8GNJkjqPZITLTaeaNH7lZPPFFI,6822
|
4
|
-
logger_36/version.py,sha256=_w8Z7Tt2m9tTPumKTtoVeoqwwUApzfXyHi6l50AyZu8,1578
|
5
|
-
logger_36/catalog/config/console_rich.py,sha256=XKRKJx_5dxp4mgan1D-u_qrQos-pezRccqKsnmn-ook,2119
|
6
|
-
logger_36/catalog/handler/console.py,sha256=QaSxXmBYp1rVRu7lj17KPQiDyLOgb6GLmh3orIx9mv0,3296
|
7
|
-
logger_36/catalog/handler/console_rich.py,sha256=k8aTPBtIrL8tjIYhN4F2rGCPB2t8f1fWwFHhn33y2gs,6759
|
8
|
-
logger_36/catalog/handler/file.py,sha256=K1bIS8fAT1aOWllWNag9mSabairxRfgZSGKub9dl8cE,3757
|
9
|
-
logger_36/catalog/handler/generic.py,sha256=xpFnMuG3d9Xr2i5Tu_y8pU2Ohuu6CeZ4oGg5xyHmTtQ,6435
|
10
|
-
logger_36/catalog/logging/chronos.py,sha256=zVe5ZwB63mqNqlIDm6ZBi4-U5n_n-21h8umhimRUcdU,1815
|
11
|
-
logger_36/catalog/logging/gpu.py,sha256=0XqVVK_TV1QPEwGXyK99jThHAjfsf-V__3m9Jh4gewk,2783
|
12
|
-
logger_36/catalog/logging/memory.py,sha256=-5SOXAV43RnXznBPbClVMpMqtMlVtBsI46w6ngz1oP4,4040
|
13
|
-
logger_36/catalog/logging/system.py,sha256=zomL8kRpmQuVP5KkcJkcUTnXK4ah3yn9PJb_cveNZDQ,2449
|
14
|
-
logger_36/config/issue.py,sha256=wAOChQMpGECw-4Jy0TWArOeQ1P134cGyKaVbc6NrwX8,1639
|
15
|
-
logger_36/config/memory.py,sha256=2OvnG7RMM1aZcUWBYGcNoBdLsQguo8cV862vCYSMbQs,1589
|
16
|
-
logger_36/config/message.py,sha256=fTZDkA6N9BBwfcTwRdEliAja0qPZwAdrxMORNFi1WLk,2021
|
17
|
-
logger_36/config/system.py,sha256=i39b-QNbg7i3BW_X-bHH9CqGO6mq1k9Ru5faYPi63SA,1849
|
18
|
-
logger_36/constant/error.py,sha256=mqlzrSdOJkuMxtRQnhNXosiGEYp8KInODBJIIdCNgbE,2197
|
19
|
-
logger_36/constant/generic.py,sha256=s0WHW-R_Eu2doDMoGERX3MtfCHmIW6uDjrDt_qP5MLA,1616
|
20
|
-
logger_36/constant/handler.py,sha256=Iw4Pnr5ZUMIeRSA0netupu4icDWoMYKLZRW7_JWbwiI,1683
|
21
|
-
logger_36/constant/issue.py,sha256=08BxREcVT0XnIFV3SrRQNd2uEOtnOP9VtscvRYXz1W4,1658
|
22
|
-
logger_36/constant/logger.py,sha256=-dE218OMVyIgHIIEiXgJ0a4p_76CJk6ULihU0MvJO1g,2152
|
23
|
-
logger_36/constant/memory.py,sha256=gjQbcJt-bf6LluxPy40nY-UFJRQ7Z-zX1xi4BKTw9hI,1715
|
24
|
-
logger_36/constant/message.py,sha256=tklw8IIT8f29lmmkk-se3GM9SKzRvmdIEJTX9ZQu-dc,2086
|
25
|
-
logger_36/constant/record.py,sha256=oEwG4gjhN-Al_1cTjDLdvS_qYKUy4zkR5QUkYocT7eU,1683
|
26
|
-
logger_36/constant/system.py,sha256=dlEU4q-hSFAO6aAa6m_yCGfBwNH5AHTyVZbRFTZ0U0U,1802
|
27
|
-
logger_36/task/inspection.py,sha256=m0Q_BJBxBmXPEo2YdeTKd5tFMA8qDP2Kedo1n4Eje30,4399
|
28
|
-
logger_36/task/storage.py,sha256=cOGNZvGThZHB0Y3HjcPs7Xkc3sanhCkacud-2cCHJKg,5028
|
29
|
-
logger_36/task/format/memory.py,sha256=ima96OrWOaGMhAyYh7zSPk0kdfHe-eQU006lRjcrBPg,3612
|
30
|
-
logger_36/task/format/message.py,sha256=91CCgH7umLHUV_YRf4AyOsYZTgNVOvQSODqXO1wJhu8,3513
|
31
|
-
logger_36/task/format/rule.py,sha256=cq4jl_ZCb8m7QoX8mWevXhy1hgwncLpc-9woKoT7m24,1970
|
32
|
-
logger_36/task/measure/chronos.py,sha256=7xZskYEXQCPDypmnlhn4KDCBB1v3eL1OE_sv-l3n8Do,2255
|
33
|
-
logger_36/task/measure/memory.py,sha256=aichGI-iCeE3Z4Y8AmWGdal2931IMdcdv4VgCeDLBoI,1876
|
34
|
-
logger_36/type/extension.py,sha256=U28VqEL3Wq_E_TZ-ZlBAXRyTr9oVPnA6ez7EyHjKM0E,7673
|
35
|
-
logger_36/type/issue.py,sha256=OnkBKRTMsHvZ-2aLQWtBzGSWMTVs_4ermg71Ygcs0w8,2153
|
36
|
-
logger_36/type/logger.py,sha256=SNBFJ1PSSKSDC-yWaP1cgUKf2qmY7-orkkH0HOKwJgY,13446
|
37
|
-
logger_36-2024.14.dist-info/METADATA,sha256=zCImQdXhsHf2P4tV9JMjJJ2xxrN-UdTi-5psLiweHd4,5601
|
38
|
-
logger_36-2024.14.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
39
|
-
logger_36-2024.14.dist-info/top_level.txt,sha256=sM95BTMWmslEEgR_1pzwZsOeSp8C_QBiu8ImbFr0XLc,10
|
40
|
-
logger_36-2024.14.dist-info/RECORD,,
|
File without changes
|