Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

Commit

Permalink
fix: improve debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Wolf committed Sep 5, 2017
1 parent 6de58b7 commit e69e2e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/decorators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ export class TSDI {
log('lazy-resolve injected property %s.%s', instance.constructor.name, inject.property);
value = tsdi.getComponentDependency(inject);
instance[`tsdi$${inject.property}`] = value;
log('lazy-resolved to %o', value);
log('lazy-resolved injected property %s.%s <- %o', instance.constructor.name, inject.property, value);
}
return value;
}
Expand Down

0 comments on commit e69e2e8

Please sign in to comment.