Skip to content

Commit d743f7f

Browse files
authored
Updated lines missed during Notifier API migration
1 parent babfb00 commit d743f7f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/toolchains/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@ def _add_file(self, file_path, resources, base_path, exclude_paths=None):
731731

732732
elif ext == self.LINKER_EXT:
733733
if resources.linker_script is not None:
734-
self.info("Warning: Multiple linker scripts detected: %s -> %s" % (resources.linker_script, file_path))
734+
self.notify.info("Warning: Multiple linker scripts detected: %s -> %s" % (resources.linker_script, file_path))
735735
resources.linker_script = file_path
736736

737737
elif ext == '.lib':
@@ -1083,7 +1083,7 @@ def build_library(self, objects, dir, name):
10831083
lib = self.STD_LIB_NAME % name
10841084
fout = join(dir, lib)
10851085
if self.need_update(fout, objects):
1086-
self.info("Library: %s" % lib)
1086+
self.notify.info("Library: %s" % lib)
10871087
self.archive(objects, fout)
10881088
needed_update = True
10891089

@@ -1173,7 +1173,7 @@ def mem_stats(self, map):
11731173

11741174
# Parse and decode a map file
11751175
if memap.parse(abspath(map), toolchain) is False:
1176-
self.info("Unknown toolchain for memory statistics %s" % toolchain)
1176+
self.notify.info("Unknown toolchain for memory statistics %s" % toolchain)
11771177
return None
11781178

11791179
# Store the memap instance for later use

0 commit comments

Comments
 (0)