mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 14:46:42 +00:00
Update logger.go
This commit is contained in:
parent
8eab1be119
commit
b7d7c99c15
1 changed files with 1 additions and 3 deletions
|
|
@ -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)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue