mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-02-17 09:46:37 +00:00
hide assuming when silent
This commit is contained in:
parent
5125cb06f7
commit
16aae66756
@ -145,7 +145,12 @@ class ContractsManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (contract.code === "") {
|
if (contract.code === "") {
|
||||||
self.logger.info(__("assuming %s to be an interface", className));
|
const message = __("assuming %s to be an interface", className);
|
||||||
|
if (contract.silent) {
|
||||||
|
self.logger.trace(message);
|
||||||
|
} else {
|
||||||
|
self.logger.info(message);
|
||||||
|
}
|
||||||
contract.deploy = false;
|
contract.deploy = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user