1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00

Don't log Ganache Testrpc started event (#7822)

This commit is contained in:
Whymarrh Whitby 2020-01-14 23:47:56 -03:30 committed by GitHub
parent ab7500a940
commit 73197b43e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,9 +13,7 @@ enableFailureOnUnhandledPromiseRejection()
// ganache server
const server = Ganache.server()
server.listen(8545, () => {
console.log('Ganache Testrpc is running on "http://localhost:8545"')
})
server.listen(8545, () => {})
log.setDefaultLevel(5)
global.log = log