mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
503 B
14 lines
503 B
// Copyright 2014 The Gogs Authors. All rights reserved. |
|
// Copyright 2023 The Gitea Authors. All rights reserved. |
|
// SPDX-License-Identifier: MIT |
|
|
|
package log |
|
|
|
// CanColorStdout reports if we can color the Stdout |
|
// Although we could do terminal sniffing and the like - in reality |
|
// most tools on *nix are happy to display ansi colors. |
|
// We will terminal sniff on Windows in console_windows.go |
|
var CanColorStdout = true |
|
|
|
// CanColorStderr reports if we can color the Stderr |
|
var CanColorStderr = true
|
|
|