Commit af8cfdaf authored by ibuler's avatar ibuler

[Update] 去掉一些日志

parent 7d115107
package httpd package httpd
import ( import (
"fmt"
"sync" "sync"
"github.com/jumpserver/koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
...@@ -37,14 +36,12 @@ func (c *Clients) DeleteClient(cID string) { ...@@ -37,14 +36,12 @@ func (c *Clients) DeleteClient(cID string) {
} }
func (c *Clients) AddClient(cID string, conn *Client) { func (c *Clients) AddClient(cID string, conn *Client) {
fmt.Println("Add Client id: ", cID)
c.mu.Lock() c.mu.Lock()
defer c.mu.Unlock() defer c.mu.Unlock()
c.container[cID] = conn c.container[cID] = conn
logger.Debug("Now clients count: ", len(c.container)) logger.Debug("Now clients count: ", len(c.container))
} }
type Connections struct { type Connections struct {
container map[string][]string container map[string][]string
mu *sync.RWMutex mu *sync.RWMutex
...@@ -69,7 +66,7 @@ func (c *Connections) GetClients(cID string) (clients []string) { ...@@ -69,7 +66,7 @@ func (c *Connections) GetClients(cID string) (clients []string) {
} }
func (c *Connections) DeleteClients(cID string) { func (c *Connections) DeleteClients(cID string) {
if clientIDs := c.GetClients(cID); clientIDs != nil{ if clientIDs := c.GetClients(cID); clientIDs != nil {
for _, clientID := range clientIDs { for _, clientID := range clientIDs {
clients.DeleteClient(clientID) clients.DeleteClient(clientID)
} }
...@@ -78,4 +75,3 @@ func (c *Connections) DeleteClients(cID string) { ...@@ -78,4 +75,3 @@ func (c *Connections) DeleteClients(cID string) {
defer c.mu.Unlock() defer c.mu.Unlock()
delete(c.container, cID) delete(c.container, cID)
} }
...@@ -25,7 +25,7 @@ func OnNamespaceConnected(c *neffos.NSConn, msg neffos.Message) error { ...@@ -25,7 +25,7 @@ func OnNamespaceConnected(c *neffos.NSConn, msg neffos.Message) error {
// 首次连接 1.获取当前用户的信息 // 首次连接 1.获取当前用户的信息
cc := c.Conn cc := c.Conn
if cc.WasReconnected() { if cc.WasReconnected() {
logger.Debugf("Web terminal redirected, with tries: %d", cc.ID(), cc.ReconnectTries) logger.Debugf("Web terminal reconnected, with tries: %d", cc.ID(), cc.ReconnectTries)
} else { } else {
logger.Debug("Web terminal on connect event trigger") logger.Debug("Web terminal on connect event trigger")
} }
...@@ -130,7 +130,7 @@ func OnHostHandler(c *neffos.NSConn, msg neffos.Message) (err error) { ...@@ -130,7 +130,7 @@ func OnHostHandler(c *neffos.NSConn, msg neffos.Message) (err error) {
} }
go func() { go func() {
defer logger.Debug("Web proxy process end") defer logger.Debug("Web proxy process end")
logger.Debug("Start proxy to host") logger.Debug("Web ssh start proxy to host")
proxySrv.Proxy() proxySrv.Proxy()
logoutMsg, _ := json.Marshal(RoomMsg{Room: roomID}) logoutMsg, _ := json.Marshal(RoomMsg{Room: roomID})
// 服务器主动退出 // 服务器主动退出
......
...@@ -141,6 +141,7 @@ func (s *SwitchSession) Bridge(userConn UserConnection, srvConn srvconn.ServerCo ...@@ -141,6 +141,7 @@ func (s *SwitchSession) Bridge(userConn UserConnection, srvConn srvconn.ServerCo
// 检测是否超过最大空闲时间 // 检测是否超过最大空闲时间
case <-time.After(s.MaxIdleTime * time.Minute): case <-time.After(s.MaxIdleTime * time.Minute):
msg := fmt.Sprintf(i18n.T("Connect idle more than %d minutes, disconnect"), s.MaxIdleTime) msg := fmt.Sprintf(i18n.T("Connect idle more than %d minutes, disconnect"), s.MaxIdleTime)
logger.Debugf("Session idle more than %d minutes, disconnect: %s", s.MaxIdleTime, s.ID)
msg = utils.WrapperWarn(msg) msg = utils.WrapperWarn(msg)
utils.IgnoreErrWriteString(userConn, "\n\r"+msg) utils.IgnoreErrWriteString(userConn, "\n\r"+msg)
return return
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment