MCPcopy Create free account
hub / github.com/OpenAtomFoundation/SmartIDE / ConsoleDebug

Method ConsoleDebug

cli/pkg/common/log.go:344–351  ·  view source on GitHub ↗

输出到控制台,但是不加任何的修饰

(args ...interface{})

Source from the content-addressed store, hash-verified

342
343// 输出到控制台,但是不加任何的修饰
344func (sLog *smartIDELogStruct) ConsoleDebug(args ...interface{}) {
345
346 if len(args) <= 0 {
347 return
348 }
349
350 sugarLogger.Info(args...)
351}
352
353// 输出到控制台,在一行
354func (sLog *smartIDELogStruct) ConsoleInLine(args ...interface{}) {

Callers 3

connServerFunction · 0.80
SendAndReceiveFunction · 0.80
WSLogFunction · 0.80

Calls 1

InfoMethod · 0.80

Tested by

no test coverage detected