diff --git a/litex/soc/integration/soc.py b/litex/soc/integration/soc.py index 91c3306dd..bbb6623e3 100755 --- a/litex/soc/integration/soc.py +++ b/litex/soc/integration/soc.py @@ -171,7 +171,7 @@ class SoCBusHandler(Module): self.logger.error(str(self.io_regions[overlap[0]])) self.logger.error(str(self.io_regions[overlap[1]])) raise - self.logger.info("{} Region {} {}.".format( + self.logger.info("{} Region {} at {}.".format( colorer(name, color="underline"), colorer("added", color="green"), str(region))) @@ -202,7 +202,7 @@ class SoCBusHandler(Module): self.logger.error(str(self.regions[overlap[0]])) self.logger.error(str(self.regions[overlap[1]])) raise - self.logger.info("{} Region {} {}.".format( + self.logger.info("{} Region {} at {}.".format( colorer(name, color="underline"), colorer("allocated" if allocated else "added", color="cyan" if allocated else "green"), str(region)))