This repository was archived by the owner on Jul 16, 2025. It is now read-only.
File tree Expand file treeCollapse file tree 3 files changed+19
-13
lines changedFilter options
+19
-13
lines changed Original file line number Diff line number Diff line change
@@ -191,21 +191,14 @@ def get_fallback_value(self, fallback_field: FallbackFieldEnum):
191
191
def list_relevant_files(
192
192
self, directory: t.Optional[Path] = None, recurse_submodules: bool = False
193
193
) -> t.List[str]:
194
-
logger.debug(
195
-
"NoVersioningSystem.list_relevant_files.start",
196
-
extra=dict(
197
-
extra_log_attributes=dict(
198
-
directory=directory,
199
-
recurse_submodules=recurse_submodules,
200
-
),
201
-
),
202
-
)
203
194
dir_to_use = directory or self.get_network_root()
204
-
logger.debug(
195
+
logger.info(
205
196
"NoVersioningSystem.list_relevant_files.dir_to_use",
206
197
extra=dict(
207
198
extra_log_attributes=dict(
199
+
directory=directory,
208
200
dir_to_use=dir_to_use,
201
+
recurse_submodules=recurse_submodules,
209
202
),
210
203
)
211
204
)
@@ -219,7 +212,7 @@ def list_relevant_files(
219
212
return_files = []
220
213
for f in files:
221
214
return_files.append(f.relative_to(dir_to_use).as_posix())
222
-
logger.debug(
215
+
logger.info(
223
216
"NoVersioningSystem.list_relevant_files.return_files",
224
217
extra=dict(
225
218
extra_log_attributes=dict(
Original file line number Diff line number Diff line change
@@ -166,7 +166,7 @@ def do_upload_logic(
166
166
text="Data NOT sent to Codecov because of dry-run option",
167
167
)
168
168
logger.debug(f"Network Files Sample: {upload_data.network[0:10]}")
169
-
logger.debug(f"Total network files: {len(upload_data.network)}")
169
+
logger.info(f"Total network files: {len(upload_data.network)}")
170
170
with open('coverage_report.txt', 'w+') as f:
171
171
f.write('\n'.join(upload_data.network))
172
172
f.write("<<< network")
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ def find_files(self, ignore_filters=False) -> typing.List[str]:
27
27
self.network_root_folder, self.recurse_submodules
28
28
)
29
29
30
-
logger.debug(
30
+
logger.info(
31
31
"NetworkFinder.find_files",
32
32
extra=dict(
33
33
extra_log_attributes=dict(
@@ -45,6 +45,19 @@ def find_files(self, ignore_filters=False) -> typing.List[str]:
45
45
if self.network_prefix:
46
46
files = [self.network_prefix + file for file in files]
47
47
48
+
logger.info(
49
+
"NetworkFinder.post_find_files",
50
+
extra=dict(
51
+
extra_log_attributes=dict(
52
+
cwd=pathlib.Path.cwd(),
53
+
len_files=len(files),
54
+
ignore_filters=ignore_filters,
55
+
network_root_folder=self.network_root_folder,
56
+
recurse_submodules=self.recurse_submodules,
57
+
),
58
+
),
59
+
)
60
+
48
61
return files or []
49
62
50
63
You can’t perform that action at this time.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4