diff --git a/mobile/geth.go b/mobile/geth.go index df924f44aa..6ff4e9e562 100644 --- a/mobile/geth.go +++ b/mobile/geth.go @@ -208,9 +208,4 @@ func (n *Node) GetNodeInfo() *NodeInfo { // GetPeersInfo returns an array of metadata objects describing connected peers. func (n *Node) GetPeersInfo() *PeerInfos { return &PeerInfos{n.node.Server().PeersInfo()} -} - -//Verbosity sets the global verbosity level. -func (n *Node) Verbosity(level int) { - glog.SetV(level) -} +} \ No newline at end of file diff --git a/mobile/logger.go b/mobile/logger.go new file mode 100644 index 0000000000..9b63fa4270 --- /dev/null +++ b/mobile/logger.go @@ -0,0 +1,24 @@ +// 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 . + +// Contains all the methods to manage logs on mobile plateforms. + +package geth + +//Verbosity sets the global verbosity level (between 0 and 6 - see logger/verbosity.go). +func SetVerbosity(level int) { + glog.SetV(level) +}