mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
lib/ip: add debug output for 2-stage initialization
This commit is contained in:
parent
676fd9171c
commit
64a89c2981
1 changed files with 3 additions and 1 deletions
|
@ -106,7 +106,7 @@ IpCoreFactory::make(PCIeCard* card, json_t *json_ips)
|
|||
|
||||
// configure all IPs
|
||||
for(auto& id : orderedIps) {
|
||||
loggerStatic->info("Initializing {}", id);
|
||||
loggerStatic->info("Configuring {}", id);
|
||||
|
||||
// find the appropriate factory that can create the specified VLNV
|
||||
// Note:
|
||||
|
@ -289,6 +289,8 @@ IpCoreFactory::make(PCIeCard* card, json_t *json_ips)
|
|||
ip->addressTranslations.emplace(memoryBlock, translation);
|
||||
}
|
||||
|
||||
loggerStatic->info("Initializing {}", *ip);
|
||||
|
||||
if(not ip->init()) {
|
||||
loggerStatic->error("Cannot start IP {}", *ip);
|
||||
continue;
|
||||
|
|
Loading…
Add table
Reference in a new issue