Update logger.go

This commit is contained in:
Felix Lange 2017-01-02 17:02:15 +01:00 committed by GitHub
parent 8eab1be119
commit b7d7c99c15

View file

@ -14,15 +14,13 @@
// You should have received a copy of the GNU Lesser General Public License // 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/>. // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
// Contains all the methods to manage logs on mobile plateforms.
package geth package geth
import ( import (
"github.com/ethereum/go-ethereum/logger/glog" "github.com/ethereum/go-ethereum/logger/glog"
) )
//Verbosity sets the global verbosity level (between 0 and 6 - see logger/verbosity.go). // SetVerbosity sets the global verbosity level (between 0 and 6 - see logger/verbosity.go).
func SetVerbosity(level int) { func SetVerbosity(level int) {
glog.SetV(level) glog.SetV(level)
} }