diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-11-11 18:06:24 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-11-15 00:00:14 +0800 |
commit | 4c16c82500645de83907743555e7256af86a9423 (patch) | |
tree | 4bc49bef2a01eb9cbb8d745b91b27719ab424a1b /mobile/init.go | |
parent | 5513c49c54f42ce6a9683b4fad9193b361b47f8c (diff) | |
download | dexon-4c16c82500645de83907743555e7256af86a9423.tar.gz dexon-4c16c82500645de83907743555e7256af86a9423.tar.zst dexon-4c16c82500645de83907743555e7256af86a9423.zip |
travis, build: cocoapods build fixes and travis caches
Diffstat (limited to 'mobile/init.go')
-rw-r--r-- | mobile/init.go | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/mobile/init.go b/mobile/init.go new file mode 100644 index 000000000..0fbc6bd3e --- /dev/null +++ b/mobile/init.go @@ -0,0 +1,35 @@ +// Copyright 2016 The go-ethereum Authors +// This file is part of the go-ethereum library. +// +// The go-ethereum library is free software: you can redistribute it and/or modify +// it under the terms of the GNU Lesser General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// The go-ethereum library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public License +// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. + +// Contains initialization code for the mbile library. + +package geth + +import ( + "runtime" + + "github.com/ethereum/go-ethereum/logger" + "github.com/ethereum/go-ethereum/logger/glog" +) + +func init() { + // Initialize the logger + glog.SetV(logger.Info) + glog.SetToStderr(true) + + // Initialize the goroutine count + runtime.GOMAXPROCS(runtime.NumCPU()) +} |