Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
Diffstat (limited to 'web')
-rw-r--r--web/job/check_client_ip_job.go6
-rw-r--r--web/service/outbound.go1
2 files changed, 3 insertions, 4 deletions
diff --git a/web/job/check_client_ip_job.go b/web/job/check_client_ip_job.go
index 51a09db8..d48bc8eb 100644
--- a/web/job/check_client_ip_job.go
+++ b/web/job/check_client_ip_job.go
@@ -118,7 +118,7 @@ func (j *CheckClientIpJob) checkFail2BanInstalled() {
err := exec.Command(cmd, args...).Run()
if err != nil {
- logger.Error("fail2ban is not installed. IP limiting may not work properly.")
+ logger.Warning("fail2ban is not installed. IP limiting may not work properly.")
}
}
@@ -126,12 +126,12 @@ func (j *CheckClientIpJob) processLogFile() {
accessLogPath := xray.GetAccessLogPath()
if accessLogPath == "none" {
- logger.Error("Access log is set to 'none' check your Xray Configs")
+ logger.Warning("Access log is set to 'none' check your Xray Configs")
return
}
if accessLogPath == "" {
- logger.Error("Access log doesn't exist in your Xray Configs")
+ logger.Warning("Access log doesn't exist in your Xray Configs")
return
}
diff --git a/web/service/outbound.go b/web/service/outbound.go
index 244d7a14..05791f69 100644
--- a/web/service/outbound.go
+++ b/web/service/outbound.go
@@ -10,7 +10,6 @@ import (
)
type OutboundService struct {
- xrayApi xray.XrayAPI
}
func (s *OutboundService) AddTraffic(traffics []*xray.Traffic, clientTraffics []*xray.ClientTraffic) (error, bool) {