bugfix - username capitalization problem
[holmes/common.git] / holmes-actions / src / main / java / org / onap / holmes / common / dmaap / store / ClosedLoopControlNameCache.java
index 2d9cf99..cd47431 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2020-2021 ZTE Corporation.
+ * Copyright 2020-2022 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -33,7 +33,7 @@ public class ClosedLoopControlNameCache extends ConcurrentHashMap<String, String
     }
 
     public String remove(String packageName) {
-        log.info(String.format("<%s> was removed into ClosedLoopControlNameCache.", packageName));
+        log.info(String.format("<%s> was removed from ClosedLoopControlNameCache.", packageName));
         return super.remove(packageName);
     }
 }