From 0345c4926ee664ca9919eabec8a5550458115c4e Mon Sep 17 00:00:00 2001 From: Granty1 Date: Tue, 7 Apr 2020 07:34:43 +0800 Subject: [PATCH] Update .gitignore and readme --- .gitignore | 1 + README-zh_CN.md | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 65027840..9dd87c44 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ yarn-error.log* go.sum /server/log/ +/server/latest_log diff --git a/README-zh_CN.md b/README-zh_CN.md index 425c26c9..b88d396e 100644 --- a/README-zh_CN.md +++ b/README-zh_CN.md @@ -134,7 +134,7 @@ go run main.go; - 缓存:使用`Redis`实现记录当前活跃用户的`jwt`令牌并实现多点登录限制。 - API文档:使用`Swagger`构建自动化文档。 - 配置文件:使用`fsnotify`和`viper`实现`yaml`格式的配置文件。 -- 日志:使用`logrus`实现日志记录。 +- 日志:使用`go-logging`实现日志记录。 ## 4. 项目目录 diff --git a/README.md b/README.md index 23e8e732..3f969b9d 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ go run main.go; - Cache: using `Redis` to implement the recording of the JWT token of the currently active user and implement the multi-login restriction. - API: using Swagger to auto generate APIs docs。 - Config: using `fsnotify` and `viper` to implement `yaml` config file。 -- Log: using `logrus` record logs。 +- Log: using `go-logging` record logs。 ## 4. Project layout -- GitLab