Files
Archive/mieru/pkg/log/mieru_init.go
2025-11-25 19:40:52 +01:00

26 lines
894 B
Go

// Copyright (C) 2025 mieru authors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package log
import "os"
// init modifies the global logger instance with the desired output file (stdout)
// and customized formatter.
func init() {
SetOutput(os.Stdout)
SetFormatter(&CliFormatter{})
}