change path for logs

This commit is contained in:
Joerg Lehmann 2022-12-27 12:06:04 +01:00
parent d7e6f84fe5
commit 2c67bde970
1 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ const (
MyDB = "beieliscaledb" MyDB = "beieliscaledb"
username = "beieli" username = "beieli"
password = "beieli4president" password = "beieli4president"
outputfile = "/home/beieli/mini-beieli-lorahandler/mini-beieli-lorahandler.log" outputfile = "/data/mini-beieli-lorahandler.log"
NOT_PLAUSIBLE_16 = 65535 NOT_PLAUSIBLE_16 = 65535
NOT_PLAUSIBLE_32 = 2147483647 NOT_PLAUSIBLE_32 = 2147483647
) )
@ -610,9 +610,9 @@ func WriteStringToFile(s string, deveui string, implausible bool) {
// Also write to individual files // Also write to individual files
datestr := time.Now().Format("2006-01") datestr := time.Now().Format("2006-01")
individual_file := "/home/beieli/mini-beieli-lorahandler/logs/" + deveui + "-" + datestr + ".log" individual_file := "/data/logs/" + deveui + "-" + datestr + ".log"
if implausible { if implausible {
individual_file = "/home/beieli/mini-beieli-lorahandler/logs/" + "implausible" + "-" + datestr + ".log" individual_file = "/data/logs/" + "implausible" + "-" + datestr + ".log"
} }
fi, err := os.OpenFile(individual_file, os.O_CREATE|os.O_APPEND|os.O_WRONLY, 0644) fi, err := os.OpenFile(individual_file, os.O_CREATE|os.O_APPEND|os.O_WRONLY, 0644)