logger-36 2025.16__py3-none-any.whl → 2025.18__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.
Files changed (55) hide show
  1. logger_36/__init__.py +1 -15
  2. logger_36/api/content.py +1 -15
  3. logger_36/api/gpu.py +1 -15
  4. logger_36/api/memory.py +1 -15
  5. logger_36/api/storage.py +1 -15
  6. logger_36/api/system.py +1 -15
  7. logger_36/api/time.py +1 -15
  8. logger_36/api/type.py +1 -15
  9. logger_36/catalog/config/console_rich.py +1 -15
  10. logger_36/catalog/config/optional.py +1 -15
  11. logger_36/catalog/handler/console.py +4 -21
  12. logger_36/catalog/handler/console_rich.py +6 -34
  13. logger_36/catalog/handler/file.py +5 -24
  14. logger_36/catalog/handler/generic.py +17 -58
  15. logger_36/catalog/logger/chronos.py +1 -15
  16. logger_36/catalog/logger/gpu.py +1 -15
  17. logger_36/catalog/logger/memory.py +8 -20
  18. logger_36/catalog/logger/system.py +1 -15
  19. logger_36/config/issue.py +1 -15
  20. logger_36/config/memory.py +1 -15
  21. logger_36/config/message.py +1 -15
  22. logger_36/config/system.py +1 -15
  23. logger_36/constant/error.py +1 -15
  24. logger_36/constant/generic.py +1 -15
  25. logger_36/constant/html.py +1 -15
  26. logger_36/constant/issue.py +1 -15
  27. logger_36/constant/logger.py +1 -15
  28. logger_36/constant/memory.py +1 -15
  29. logger_36/constant/message.py +1 -15
  30. logger_36/constant/path.py +4 -18
  31. logger_36/constant/record.py +2 -17
  32. logger_36/constant/system.py +1 -15
  33. logger_36/extension/html_.py +1 -15
  34. logger_36/extension/line.py +1 -15
  35. logger_36/instance/logger.py +3 -16
  36. logger_36/instance/loggers.py +1 -15
  37. logger_36/task/format/memory.py +1 -15
  38. logger_36/task/format/message.py +1 -15
  39. logger_36/task/format/rule.py +1 -15
  40. logger_36/task/inspection.py +1 -15
  41. logger_36/task/measure/chronos.py +1 -15
  42. logger_36/task/measure/memory.py +1 -15
  43. logger_36/task/storage.py +1 -15
  44. logger_36/type/handler.py +10 -57
  45. logger_36/type/issue.py +1 -15
  46. logger_36/type/logger.py +50 -93
  47. logger_36/type/loggers.py +2 -17
  48. logger_36/type/message.py +1 -15
  49. logger_36/version.py +2 -16
  50. {logger_36-2025.16.dist-info → logger_36-2025.18.dist-info}/METADATA +2 -2
  51. logger_36-2025.18.dist-info/RECORD +53 -0
  52. logger_36/constant/handler.py +0 -58
  53. logger_36-2025.16.dist-info/RECORD +0 -54
  54. {logger_36-2025.16.dist-info → logger_36-2025.18.dist-info}/WHEEL +0 -0
  55. {logger_36-2025.16.dist-info → logger_36-2025.18.dist-info}/top_level.txt +0 -0
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright CNRS/Inria/UniCA
2
+ Copyright CNRS (https://www.cnrs.fr/index.php/en)
3
3
  Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
@@ -21,7 +21,7 @@ def LogMemoryUsages(
21
21
  logger: logger_t = L,
22
22
  ) -> None:
23
23
  """"""
24
- if not logger.any_handler_stores_memory:
24
+ if (not hasattr(logger, "memory_usages")) or (logger.memory_usages.__len__() == 0):
25
25
  return
26
26
 
27
27
  where_s, usages = zip(*logger.memory_usages)
@@ -76,10 +76,12 @@ def LogMaximumMemoryUsage(
76
76
  """
77
77
  unit: b or None=bytes, k=kilo, m=mega, g=giga, a=auto
78
78
  """
79
- if logger.any_handler_stores_memory:
80
- where, max_usage = logger.max_memory_usage_full
81
- value, unit = FormattedUsage(max_usage, unit=unit, decimals=decimals)
82
- logger.info(f"Max. Memory Usage: {value}{unit} near {where}")
79
+ if (not hasattr(logger, "memory_usages")) or (logger.memory_usages.__len__() == 0):
80
+ return
81
+
82
+ where, max_usage = logger.max_memory_usage_full
83
+ value, unit = FormattedUsage(max_usage, unit=unit, decimals=decimals)
84
+ logger.info(f"Max. Memory Usage: {value}{unit} near {where}")
83
85
 
84
86
 
85
87
  """
@@ -112,18 +114,4 @@ The fact that you are presently reading this means that you have had
112
114
  knowledge of the CeCILL license and that you accept its terms.
113
115
 
114
116
  SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
115
-
116
- This software is being developed by Eric Debreuve, a CNRS employee and
117
- member of team Morpheme.
118
- Team Morpheme is a joint team between Inria, CNRS, and UniCA.
119
- It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
120
- I3S, and Laboratory iBV.
121
-
122
- CNRS: https://www.cnrs.fr/index.php/en
123
- Inria: https://www.inria.fr/en/
124
- UniCA: https://univ-cotedazur.eu/
125
- Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
126
- I3S: https://www.i3s.unice.fr/en/
127
- iBV: http://ibv.unice.fr/
128
- Team Morpheme: https://team.inria.fr/morpheme/
129
117
  """
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright CNRS/Inria/UniCA
2
+ Copyright CNRS (https://www.cnrs.fr/index.php/en)
3
3
  Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
@@ -67,18 +67,4 @@ The fact that you are presently reading this means that you have had
67
67
  knowledge of the CeCILL license and that you accept its terms.
68
68
 
69
69
  SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
70
-
71
- This software is being developed by Eric Debreuve, a CNRS employee and
72
- member of team Morpheme.
73
- Team Morpheme is a joint team between Inria, CNRS, and UniCA.
74
- It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
75
- I3S, and Laboratory iBV.
76
-
77
- CNRS: https://www.cnrs.fr/index.php/en
78
- Inria: https://www.inria.fr/en/
79
- UniCA: https://univ-cotedazur.eu/
80
- Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
81
- I3S: https://www.i3s.unice.fr/en/
82
- iBV: http://ibv.unice.fr/
83
- Team Morpheme: https://team.inria.fr/morpheme/
84
70
  """
logger_36/config/issue.py CHANGED
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright CNRS/Inria/UniCA
2
+ Copyright CNRS (https://www.cnrs.fr/index.php/en)
3
3
  Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
@@ -39,18 +39,4 @@ The fact that you are presently reading this means that you have had
39
39
  knowledge of the CeCILL license and that you accept its terms.
40
40
 
41
41
  SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
42
-
43
- This software is being developed by Eric Debreuve, a CNRS employee and
44
- member of team Morpheme.
45
- Team Morpheme is a joint team between Inria, CNRS, and UniCA.
46
- It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
47
- I3S, and Laboratory iBV.
48
-
49
- CNRS: https://www.cnrs.fr/index.php/en
50
- Inria: https://www.inria.fr/en/
51
- UniCA: https://univ-cotedazur.eu/
52
- Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
53
- I3S: https://www.i3s.unice.fr/en/
54
- iBV: http://ibv.unice.fr/
55
- Team Morpheme: https://team.inria.fr/morpheme/
56
42
  """
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright CNRS/Inria/UniCA
2
+ Copyright CNRS (https://www.cnrs.fr/index.php/en)
3
3
  Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
@@ -37,18 +37,4 @@ The fact that you are presently reading this means that you have had
37
37
  knowledge of the CeCILL license and that you accept its terms.
38
38
 
39
39
  SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
40
-
41
- This software is being developed by Eric Debreuve, a CNRS employee and
42
- member of team Morpheme.
43
- Team Morpheme is a joint team between Inria, CNRS, and UniCA.
44
- It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
45
- I3S, and Laboratory iBV.
46
-
47
- CNRS: https://www.cnrs.fr/index.php/en
48
- Inria: https://www.inria.fr/en/
49
- UniCA: https://univ-cotedazur.eu/
50
- Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
51
- I3S: https://www.i3s.unice.fr/en/
52
- iBV: http://ibv.unice.fr/
53
- Team Morpheme: https://team.inria.fr/morpheme/
54
40
  """
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright CNRS/Inria/UniCA
2
+ Copyright CNRS (https://www.cnrs.fr/index.php/en)
3
3
  Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
@@ -50,18 +50,4 @@ The fact that you are presently reading this means that you have had
50
50
  knowledge of the CeCILL license and that you accept its terms.
51
51
 
52
52
  SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
53
-
54
- This software is being developed by Eric Debreuve, a CNRS employee and
55
- member of team Morpheme.
56
- Team Morpheme is a joint team between Inria, CNRS, and UniCA.
57
- It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
58
- I3S, and Laboratory iBV.
59
-
60
- CNRS: https://www.cnrs.fr/index.php/en
61
- Inria: https://www.inria.fr/en/
62
- UniCA: https://univ-cotedazur.eu/
63
- Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
64
- I3S: https://www.i3s.unice.fr/en/
65
- iBV: http://ibv.unice.fr/
66
- Team Morpheme: https://team.inria.fr/morpheme/
67
53
  """
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright CNRS/Inria/UniCA
2
+ Copyright CNRS (https://www.cnrs.fr/index.php/en)
3
3
  Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
@@ -53,18 +53,4 @@ The fact that you are presently reading this means that you have had
53
53
  knowledge of the CeCILL license and that you accept its terms.
54
54
 
55
55
  SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
56
-
57
- This software is being developed by Eric Debreuve, a CNRS employee and
58
- member of team Morpheme.
59
- Team Morpheme is a joint team between Inria, CNRS, and UniCA.
60
- It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
61
- I3S, and Laboratory iBV.
62
-
63
- CNRS: https://www.cnrs.fr/index.php/en
64
- Inria: https://www.inria.fr/en/
65
- UniCA: https://univ-cotedazur.eu/
66
- Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
67
- I3S: https://www.i3s.unice.fr/en/
68
- iBV: http://ibv.unice.fr/
69
- Team Morpheme: https://team.inria.fr/morpheme/
70
56
  """
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright CNRS/Inria/UniCA
2
+ Copyright CNRS (https://www.cnrs.fr/index.php/en)
3
3
  Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
@@ -53,18 +53,4 @@ The fact that you are presently reading this means that you have had
53
53
  knowledge of the CeCILL license and that you accept its terms.
54
54
 
55
55
  SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
56
-
57
- This software is being developed by Eric Debreuve, a CNRS employee and
58
- member of team Morpheme.
59
- Team Morpheme is a joint team between Inria, CNRS, and UniCA.
60
- It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
61
- I3S, and Laboratory iBV.
62
-
63
- CNRS: https://www.cnrs.fr/index.php/en
64
- Inria: https://www.inria.fr/en/
65
- UniCA: https://univ-cotedazur.eu/
66
- Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
67
- I3S: https://www.i3s.unice.fr/en/
68
- iBV: http://ibv.unice.fr/
69
- Team Morpheme: https://team.inria.fr/morpheme/
70
56
  """
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright CNRS/Inria/UniCA
2
+ Copyright CNRS (https://www.cnrs.fr/index.php/en)
3
3
  Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
@@ -41,18 +41,4 @@ The fact that you are presently reading this means that you have had
41
41
  knowledge of the CeCILL license and that you accept its terms.
42
42
 
43
43
  SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
44
-
45
- This software is being developed by Eric Debreuve, a CNRS employee and
46
- member of team Morpheme.
47
- Team Morpheme is a joint team between Inria, CNRS, and UniCA.
48
- It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
49
- I3S, and Laboratory iBV.
50
-
51
- CNRS: https://www.cnrs.fr/index.php/en
52
- Inria: https://www.inria.fr/en/
53
- UniCA: https://univ-cotedazur.eu/
54
- Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
55
- I3S: https://www.i3s.unice.fr/en/
56
- iBV: http://ibv.unice.fr/
57
- Team Morpheme: https://team.inria.fr/morpheme/
58
44
  """
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright CNRS/Inria/UniCA
2
+ Copyright CNRS (https://www.cnrs.fr/index.php/en)
3
3
  Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
@@ -53,18 +53,4 @@ The fact that you are presently reading this means that you have had
53
53
  knowledge of the CeCILL license and that you accept its terms.
54
54
 
55
55
  SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
56
-
57
- This software is being developed by Eric Debreuve, a CNRS employee and
58
- member of team Morpheme.
59
- Team Morpheme is a joint team between Inria, CNRS, and UniCA.
60
- It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
61
- I3S, and Laboratory iBV.
62
-
63
- CNRS: https://www.cnrs.fr/index.php/en
64
- Inria: https://www.inria.fr/en/
65
- UniCA: https://univ-cotedazur.eu/
66
- Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
67
- I3S: https://www.i3s.unice.fr/en/
68
- iBV: http://ibv.unice.fr/
69
- Team Morpheme: https://team.inria.fr/morpheme/
70
56
  """
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright CNRS/Inria/UniCA
2
+ Copyright CNRS (https://www.cnrs.fr/index.php/en)
3
3
  Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
@@ -41,18 +41,4 @@ The fact that you are presently reading this means that you have had
41
41
  knowledge of the CeCILL license and that you accept its terms.
42
42
 
43
43
  SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
44
-
45
- This software is being developed by Eric Debreuve, a CNRS employee and
46
- member of team Morpheme.
47
- Team Morpheme is a joint team between Inria, CNRS, and UniCA.
48
- It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
49
- I3S, and Laboratory iBV.
50
-
51
- CNRS: https://www.cnrs.fr/index.php/en
52
- Inria: https://www.inria.fr/en/
53
- UniCA: https://univ-cotedazur.eu/
54
- Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
55
- I3S: https://www.i3s.unice.fr/en/
56
- iBV: http://ibv.unice.fr/
57
- Team Morpheme: https://team.inria.fr/morpheme/
58
44
  """
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright CNRS/Inria/UniCA
2
+ Copyright CNRS (https://www.cnrs.fr/index.php/en)
3
3
  Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
@@ -43,18 +43,4 @@ The fact that you are presently reading this means that you have had
43
43
  knowledge of the CeCILL license and that you accept its terms.
44
44
 
45
45
  SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
46
-
47
- This software is being developed by Eric Debreuve, a CNRS employee and
48
- member of team Morpheme.
49
- Team Morpheme is a joint team between Inria, CNRS, and UniCA.
50
- It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
51
- I3S, and Laboratory iBV.
52
-
53
- CNRS: https://www.cnrs.fr/index.php/en
54
- Inria: https://www.inria.fr/en/
55
- UniCA: https://univ-cotedazur.eu/
56
- Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
57
- I3S: https://www.i3s.unice.fr/en/
58
- iBV: http://ibv.unice.fr/
59
- Team Morpheme: https://team.inria.fr/morpheme/
60
46
  """
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright CNRS/Inria/UniCA
2
+ Copyright CNRS (https://www.cnrs.fr/index.php/en)
3
3
  Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
@@ -41,18 +41,4 @@ The fact that you are presently reading this means that you have had
41
41
  knowledge of the CeCILL license and that you accept its terms.
42
42
 
43
43
  SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
44
-
45
- This software is being developed by Eric Debreuve, a CNRS employee and
46
- member of team Morpheme.
47
- Team Morpheme is a joint team between Inria, CNRS, and UniCA.
48
- It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
49
- I3S, and Laboratory iBV.
50
-
51
- CNRS: https://www.cnrs.fr/index.php/en
52
- Inria: https://www.inria.fr/en/
53
- UniCA: https://univ-cotedazur.eu/
54
- Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
55
- I3S: https://www.i3s.unice.fr/en/
56
- iBV: http://ibv.unice.fr/
57
- Team Morpheme: https://team.inria.fr/morpheme/
58
44
  """
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright CNRS/Inria/UniCA
2
+ Copyright CNRS (https://www.cnrs.fr/index.php/en)
3
3
  Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
@@ -55,18 +55,4 @@ The fact that you are presently reading this means that you have had
55
55
  knowledge of the CeCILL license and that you accept its terms.
56
56
 
57
57
  SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
58
-
59
- This software is being developed by Eric Debreuve, a CNRS employee and
60
- member of team Morpheme.
61
- Team Morpheme is a joint team between Inria, CNRS, and UniCA.
62
- It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
63
- I3S, and Laboratory iBV.
64
-
65
- CNRS: https://www.cnrs.fr/index.php/en
66
- Inria: https://www.inria.fr/en/
67
- UniCA: https://univ-cotedazur.eu/
68
- Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
69
- I3S: https://www.i3s.unice.fr/en/
70
- iBV: http://ibv.unice.fr/
71
- Team Morpheme: https://team.inria.fr/morpheme/
72
58
  """
@@ -1,20 +1,20 @@
1
1
  """
2
- Copyright CNRS/Inria/UniCA
2
+ Copyright CNRS (https://www.cnrs.fr/index.php/en)
3
3
  Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
6
6
 
7
- import inspect as nspt
7
+ import inspect as e
8
8
  import tempfile as tmps
9
9
  from pathlib import Path as path_t
10
10
 
11
11
  USER_FOLDER = path_t.home()
12
12
 
13
- frame = nspt.stack()[-1]
13
+ frame = e.stack(context=0)[-1] # -1=root caller.
14
14
  if path_t(frame.filename).exists():
15
15
  PROJECT_FILE = path_t(frame.filename)
16
16
  if PROJECT_FILE.is_relative_to(USER_FOLDER):
17
- PROJECT_FILE_RELATIVE = path_t("~") / PROJECT_FILE.relative_to(USER_FOLDER)
17
+ PROJECT_FILE_RELATIVE = PROJECT_FILE.relative_to(USER_FOLDER)
18
18
  else:
19
19
  PROJECT_FILE_RELATIVE = PROJECT_FILE
20
20
  PROJECT_FOLDER = PROJECT_FILE.parent
@@ -52,18 +52,4 @@ The fact that you are presently reading this means that you have had
52
52
  knowledge of the CeCILL license and that you accept its terms.
53
53
 
54
54
  SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
55
-
56
- This software is being developed by Eric Debreuve, a CNRS employee and
57
- member of team Morpheme.
58
- Team Morpheme is a joint team between Inria, CNRS, and UniCA.
59
- It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
60
- I3S, and Laboratory iBV.
61
-
62
- CNRS: https://www.cnrs.fr/index.php/en
63
- Inria: https://www.inria.fr/en/
64
- UniCA: https://univ-cotedazur.eu/
65
- Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
66
- I3S: https://www.i3s.unice.fr/en/
67
- iBV: http://ibv.unice.fr/
68
- Team Morpheme: https://team.inria.fr/morpheme/
69
55
  """
@@ -1,12 +1,11 @@
1
1
  """
2
- Copyright CNRS/Inria/UniCA
2
+ Copyright CNRS (https://www.cnrs.fr/index.php/en)
3
3
  Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
6
6
 
7
7
  SHOW_W_RULE_ATTR = "should_show_w_rule"
8
- STORE_MEMORY_ATTR = "should_store_memory_usage"
9
- HIDE_WHERE_ATTR = "should_hide_where"
8
+ SHOW_WHERE_ATTR = "should_show_where"
10
9
 
11
10
  """
12
11
  COPYRIGHT NOTICE
@@ -38,18 +37,4 @@ The fact that you are presently reading this means that you have had
38
37
  knowledge of the CeCILL license and that you accept its terms.
39
38
 
40
39
  SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
41
-
42
- This software is being developed by Eric Debreuve, a CNRS employee and
43
- member of team Morpheme.
44
- Team Morpheme is a joint team between Inria, CNRS, and UniCA.
45
- It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
46
- I3S, and Laboratory iBV.
47
-
48
- CNRS: https://www.cnrs.fr/index.php/en
49
- Inria: https://www.inria.fr/en/
50
- UniCA: https://univ-cotedazur.eu/
51
- Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
52
- I3S: https://www.i3s.unice.fr/en/
53
- iBV: http://ibv.unice.fr/
54
- Team Morpheme: https://team.inria.fr/morpheme/
55
40
  """
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright CNRS/Inria/UniCA
2
+ Copyright CNRS (https://www.cnrs.fr/index.php/en)
3
3
  Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
@@ -43,18 +43,4 @@ The fact that you are presently reading this means that you have had
43
43
  knowledge of the CeCILL license and that you accept its terms.
44
44
 
45
45
  SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
46
-
47
- This software is being developed by Eric Debreuve, a CNRS employee and
48
- member of team Morpheme.
49
- Team Morpheme is a joint team between Inria, CNRS, and UniCA.
50
- It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
51
- I3S, and Laboratory iBV.
52
-
53
- CNRS: https://www.cnrs.fr/index.php/en
54
- Inria: https://www.inria.fr/en/
55
- UniCA: https://univ-cotedazur.eu/
56
- Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
57
- I3S: https://www.i3s.unice.fr/en/
58
- iBV: http://ibv.unice.fr/
59
- Team Morpheme: https://team.inria.fr/morpheme/
60
46
  """
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright CNRS/Inria/UniCA
2
+ Copyright CNRS (https://www.cnrs.fr/index.php/en)
3
3
  Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
@@ -90,18 +90,4 @@ The fact that you are presently reading this means that you have had
90
90
  knowledge of the CeCILL license and that you accept its terms.
91
91
 
92
92
  SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
93
-
94
- This software is being developed by Eric Debreuve, a CNRS employee and
95
- member of team Morpheme.
96
- Team Morpheme is a joint team between Inria, CNRS, and UniCA.
97
- It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
98
- I3S, and Laboratory iBV.
99
-
100
- CNRS: https://www.cnrs.fr/index.php/en
101
- Inria: https://www.inria.fr/en/
102
- UniCA: https://univ-cotedazur.eu/
103
- Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
104
- I3S: https://www.i3s.unice.fr/en/
105
- iBV: http://ibv.unice.fr/
106
- Team Morpheme: https://team.inria.fr/morpheme/
107
93
  """
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright CNRS/Inria/UniCA
2
+ Copyright CNRS (https://www.cnrs.fr/index.php/en)
3
3
  Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
@@ -66,18 +66,4 @@ The fact that you are presently reading this means that you have had
66
66
  knowledge of the CeCILL license and that you accept its terms.
67
67
 
68
68
  SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
69
-
70
- This software is being developed by Eric Debreuve, a CNRS employee and
71
- member of team Morpheme.
72
- Team Morpheme is a joint team between Inria, CNRS, and UniCA.
73
- It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
74
- I3S, and Laboratory iBV.
75
-
76
- CNRS: https://www.cnrs.fr/index.php/en
77
- Inria: https://www.inria.fr/en/
78
- UniCA: https://univ-cotedazur.eu/
79
- Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
80
- I3S: https://www.i3s.unice.fr/en/
81
- iBV: http://ibv.unice.fr/
82
- Team Morpheme: https://team.inria.fr/morpheme/
83
69
  """
@@ -1,12 +1,13 @@
1
1
  """
2
- Copyright CNRS/Inria/UniCA
2
+ Copyright CNRS (https://www.cnrs.fr/index.php/en)
3
3
  Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
6
6
 
7
+ from logger_36.constant.logger import LOGGER_NAME
7
8
  from logger_36.type.logger import logger_t
8
9
 
9
- L = logger_t()
10
+ L = logger_t(name_=LOGGER_NAME)
10
11
 
11
12
  """
12
13
  COPYRIGHT NOTICE
@@ -38,18 +39,4 @@ The fact that you are presently reading this means that you have had
38
39
  knowledge of the CeCILL license and that you accept its terms.
39
40
 
40
41
  SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
41
-
42
- This software is being developed by Eric Debreuve, a CNRS employee and
43
- member of team Morpheme.
44
- Team Morpheme is a joint team between Inria, CNRS, and UniCA.
45
- It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
46
- I3S, and Laboratory iBV.
47
-
48
- CNRS: https://www.cnrs.fr/index.php/en
49
- Inria: https://www.inria.fr/en/
50
- UniCA: https://univ-cotedazur.eu/
51
- Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
52
- I3S: https://www.i3s.unice.fr/en/
53
- iBV: http://ibv.unice.fr/
54
- Team Morpheme: https://team.inria.fr/morpheme/
55
42
  """
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright CNRS/Inria/UniCA
2
+ Copyright CNRS (https://www.cnrs.fr/index.php/en)
3
3
  Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
@@ -39,18 +39,4 @@ The fact that you are presently reading this means that you have had
39
39
  knowledge of the CeCILL license and that you accept its terms.
40
40
 
41
41
  SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
42
-
43
- This software is being developed by Eric Debreuve, a CNRS employee and
44
- member of team Morpheme.
45
- Team Morpheme is a joint team between Inria, CNRS, and UniCA.
46
- It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
47
- I3S, and Laboratory iBV.
48
-
49
- CNRS: https://www.cnrs.fr/index.php/en
50
- Inria: https://www.inria.fr/en/
51
- UniCA: https://univ-cotedazur.eu/
52
- Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
53
- I3S: https://www.i3s.unice.fr/en/
54
- iBV: http://ibv.unice.fr/
55
- Team Morpheme: https://team.inria.fr/morpheme/
56
42
  """
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright CNRS/Inria/UniCA
2
+ Copyright CNRS (https://www.cnrs.fr/index.php/en)
3
3
  Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
@@ -111,18 +111,4 @@ The fact that you are presently reading this means that you have had
111
111
  knowledge of the CeCILL license and that you accept its terms.
112
112
 
113
113
  SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
114
-
115
- This software is being developed by Eric Debreuve, a CNRS employee and
116
- member of team Morpheme.
117
- Team Morpheme is a joint team between Inria, CNRS, and UniCA.
118
- It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
119
- I3S, and Laboratory iBV.
120
-
121
- CNRS: https://www.cnrs.fr/index.php/en
122
- Inria: https://www.inria.fr/en/
123
- UniCA: https://univ-cotedazur.eu/
124
- Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
125
- I3S: https://www.i3s.unice.fr/en/
126
- iBV: http://ibv.unice.fr/
127
- Team Morpheme: https://team.inria.fr/morpheme/
128
114
  """
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright CNRS/Inria/UniCA
2
+ Copyright CNRS (https://www.cnrs.fr/index.php/en)
3
3
  Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
@@ -161,18 +161,4 @@ The fact that you are presently reading this means that you have had
161
161
  knowledge of the CeCILL license and that you accept its terms.
162
162
 
163
163
  SEE LICENCE NOTICE: file README-LICENCE-utf8.txt at project source root.
164
-
165
- This software is being developed by Eric Debreuve, a CNRS employee and
166
- member of team Morpheme.
167
- Team Morpheme is a joint team between Inria, CNRS, and UniCA.
168
- It is hosted by the Centre Inria d'Université Côte d'Azur, Laboratory
169
- I3S, and Laboratory iBV.
170
-
171
- CNRS: https://www.cnrs.fr/index.php/en
172
- Inria: https://www.inria.fr/en/
173
- UniCA: https://univ-cotedazur.eu/
174
- Centre Inria d'Université Côte d'Azur: https://www.inria.fr/en/centre/sophia/
175
- I3S: https://www.i3s.unice.fr/en/
176
- iBV: http://ibv.unice.fr/
177
- Team Morpheme: https://team.inria.fr/morpheme/
178
164
  """