Skip to content

Commit

Permalink
完善日志信息
Browse files Browse the repository at this point in the history
  • Loading branch information
kklldog committed Apr 5, 2022
1 parent d889350 commit 16bfea6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions AgileConfig.Server.Service/RemoteServerNodeProxy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@ public async Task<bool> AllClientsDoActionAsync(string address, WebsocketAction
using (var service = GetSysLogService())
{
var module = "";
if (action.Module == "R")
if (action.Module == "r")
{
module = "注册中心";
}
if (action.Module == "C")
if (action.Module == "c")
{
module = "配置中心";
}
Expand Down Expand Up @@ -124,11 +124,11 @@ public async Task<bool> AppClientsDoActionAsync(string address, string appId, st
using (var service = GetSysLogService())
{
var module = "";
if (action.Module == "R")
if (action.Module == "r")
{
module = "注册中心";
}
if (action.Module == "C")
if (action.Module == "c")
{
module = "配置中心";
}
Expand Down Expand Up @@ -183,11 +183,11 @@ public async Task<bool> OneClientDoActionAsync(string address, string clientId,
using (var service = GetSysLogService())
{
var module = "";
if (action.Module == "R")
if (action.Module == "r")
{
module = "注册中心";
}
if (action.Module == "C")
if (action.Module == "c")
{
module = "配置中心";
}
Expand Down

0 comments on commit 16bfea6

Please sign in to comment.