From e6205e9f71d89218dbbbce54090ac4bea8724a18 Mon Sep 17 00:00:00 2001 From: XM-GO <93296511+XM-GO@users.noreply.github.com> Date: Wed, 7 Jun 2023 08:54:11 +0800 Subject: [PATCH] updata README --- README.md | 4 +++- apps/visual/driver/mysql_meta.go | 2 -- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d113fc5..f3a1485 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,9 @@ ## 🏭在线体验 演示地址:http://101.35.247.125:7789/ 帐号:admin 密码:123456 -组态大屏:http://101.35.247.125:7790/ +组态大屏:http://101.35.247.125:7790/ +规则引擎:http://101.35.247.125:7791/ +报表设计器:http://101.35.247.125:9001/ --- 系统在线文档 diff --git a/apps/visual/driver/mysql_meta.go b/apps/visual/driver/mysql_meta.go index 5005c45..b77354c 100644 --- a/apps/visual/driver/mysql_meta.go +++ b/apps/visual/driver/mysql_meta.go @@ -4,7 +4,6 @@ import ( "database/sql" "fmt" "github.com/XM-GO/PandaKit/biz" - "log" "pandax/apps/visual/entity" "strings" @@ -19,7 +18,6 @@ func getMysqlDB(d *entity.VisualDataSource) (*sql.DB, error) { if d.Db.Config != "" { dsn = fmt.Sprintf("%s&%s", dsn, d.Db.Config) } - log.Println(dsn) return sql.Open("mysql", dsn) }