mark is a nil-safe wrapper around (*rawlog.Logger).Mark for callers that only optionally enable raw logging.
(rl *rawlog.Logger, msg string)
| 132 | // mark is a nil-safe wrapper around (*rawlog.Logger).Mark for callers that |
| 133 | // only optionally enable raw logging. |
| 134 | func mark(rl *rawlog.Logger, msg string) { |
| 135 | if rl != nil { |
| 136 | rl.Mark(msg) |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | // detectSA5xCard runs hardware detection and returns true if at least one |
| 141 | // Celestica/SA5x time card is present. Returns false (with no error) when |
no test coverage detected
searching dependent graphs…