4 Star 0 Fork 0

wanttobeamaster / elasticell

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
util.go 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
wanttobeamaster 提交于 2021-04-15 23:19 . mend etcd pkg go-systemd...
// Copyright 2016 DeepFabric, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// See the License for the specific language governing permissions and
// limitations under the License.
package pdserver
import (
"io"
"time"
"gitee.com/wanttobeamaster/pkg/capnslog"
)
// RedirectEmbedEtcdLog because of our used embed etcd,
// so we need redirect etcd log to spec.
func RedirectEmbedEtcdLog(w io.Writer) {
capnslog.SetFormatter(capnslog.NewPrettyFormatter(w, false))
capnslog.SetGlobalLogLevel(capnslog.DEBUG)
}
func minUint64(a, b uint64) uint64 {
if a < b {
return a
}
return b
}
func maxUint64(a, b uint64) uint64 {
if a > b {
return a
}
return b
}
func minDuration(a, b time.Duration) time.Duration {
if a < b {
return a
}
return b
}
Go
1
https://gitee.com/wanttobeamaster/elasticell.git
git@gitee.com:wanttobeamaster/elasticell.git
wanttobeamaster
elasticell
elasticell
8b1bff0b0046

搜索帮助