You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ta...@apache.org on 2019/01/12 13:42:56 UTC

[incubator-skywalking] branch master updated: fix log output. (#2153)

This is an automated email from the ASF dual-hosted git repository.

tanjian pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-skywalking.git


The following commit(s) were added to refs/heads/master by this push:
     new 84a5c8c  fix log output. (#2153)
84a5c8c is described below

commit 84a5c8c546288df096786f39592cf0d303a59aa4
Author: Jared Tan <ji...@daocloud.io>
AuthorDate: Sat Jan 12 21:42:52 2019 +0800

    fix log output. (#2153)
---
 .../oap/server/core/register/service/ServiceInventoryRegister.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/register/service/ServiceInventoryRegister.java b/oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/register/service/ServiceInventoryRegister.java
index 25e06ab..5cb6737 100644
--- a/oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/register/service/ServiceInventoryRegister.java
+++ b/oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/register/service/ServiceInventoryRegister.java
@@ -22,7 +22,7 @@ import com.google.gson.JsonObject;
 import java.util.Objects;
 import org.apache.skywalking.oap.server.core.*;
 import org.apache.skywalking.oap.server.core.cache.ServiceInventoryCache;
-import org.apache.skywalking.oap.server.core.register.*;
+import org.apache.skywalking.oap.server.core.register.ServiceInventory;
 import org.apache.skywalking.oap.server.core.register.worker.InventoryProcess;
 import org.apache.skywalking.oap.server.library.module.ModuleManager;
 import org.apache.skywalking.oap.server.library.util.BooleanUtils;
@@ -100,7 +100,7 @@ public class ServiceInventoryRegister implements IServiceInventoryRegister {
 
             InventoryProcess.INSTANCE.in(serviceInventory);
         } else {
-            logger.warn("Service {} properties update, but not found in storage.");
+            logger.warn("Service {} properties update, but not found in storage.", serviceId);
         }
     }