(config *srvconfig.Config)
| 361 | } |
| 362 | |
| 363 | func setLogFormat(config *srvconfig.Config) error { |
| 364 | f := log.OutputFormat(config.Debug.Format) |
| 365 | if f == "" { |
| 366 | f = log.TextFormat |
| 367 | } |
| 368 | |
| 369 | return log.SetFormat(f) |
| 370 | } |
| 371 | |
| 372 | func dumpStacks(writeToFile bool) { |
| 373 | var ( |
no outgoing calls
no test coverage detected
searching dependent graphs…