(b bool)
| 102 | } |
| 103 | |
| 104 | func (this *LogWriter) Run(b bool) { |
| 105 | defer this.Recover() |
| 106 | this.end_wait.Add(1) |
| 107 | defer this.end_wait.Done() |
| 108 | if b == true { |
| 109 | this.init_path = <-this.init |
| 110 | } |
| 111 | this.MakeLogTimePath() |
| 112 | this.doRun() |
| 113 | } |
| 114 | |
| 115 | func (this *LogWriter) doRun() { |
| 116 | var logRecord *LogRecord |
no test coverage detected