mirror of
https://github.com/gl-inet/glkvm-cloud.git
synced 2026-09-22 10:33:29 +00:00
f26078c121
Signed-off-by: Jianhui Zhao <jianhuizhao329@gmail.com>
64 lines
1.4 KiB
Go
64 lines
1.4 KiB
Go
/*
|
|
* Copyright (C) 2017 Jianhui Zhao <jianhuizhao329@gmail.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
|
|
* USA
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
ilog "log"
|
|
"os"
|
|
|
|
"github.com/mattn/go-isatty"
|
|
)
|
|
|
|
type RttyLog string
|
|
|
|
const LOG_FILE RttyLog = "/var/log/rtty.log"
|
|
|
|
func (l RttyLog) Write(b []byte) (n int, err error) {
|
|
if isatty.IsTerminal(os.Stdout.Fd()) {
|
|
fmt.Fprintf(os.Stderr, "%s", b)
|
|
return 0, nil
|
|
}
|
|
|
|
if l == "" {
|
|
return 0, nil
|
|
}
|
|
|
|
file, err := os.OpenFile(string(l), os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0666)
|
|
if err != nil {
|
|
return 0, nil
|
|
}
|
|
|
|
st, _ := file.Stat()
|
|
if st.Size() > 1024*1024 {
|
|
file.Truncate(0)
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
fmt.Fprintf(file, "%s", b)
|
|
|
|
return 0, nil
|
|
}
|
|
|
|
func logInit() *ilog.Logger {
|
|
return ilog.New(LOG_FILE, "", ilog.LstdFlags)
|
|
}
|