| 146 | |
| 147 | template<> |
| 148 | void Out<NColorizer::EAnsiCode>(IOutputStream& os, TTypeTraits<NColorizer::EAnsiCode>::TFuncParam x) { |
| 149 | if (AutoColors(os).IsTTY()) { |
| 150 | os << ToStringBufC(x); |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | bool TColors::CalcIsTTY(FILE* file) { |
| 155 | if (GetEnv("ENFORCE_TTY")) { |
nothing calls this directly
no test coverage detected