gitea源码

color_console.go 503B

123456789101112131415
  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Copyright 2023 The Gitea Authors. All rights reserved.
  3. // SPDX-License-Identifier: MIT
  4. package log
  5. // CanColorStdout reports if we can color the Stdout
  6. // Although we could do terminal sniffing and the like - in reality
  7. // most tools on *nix are happy to display ansi colors.
  8. // We will terminal sniff on Windows in console_windows.go
  9. var CanColorStdout = true
  10. // CanColorStderr reports if we can color the Stderr
  11. var CanColorStderr = true