[유치수] [profiler-29] valid id check로직 추가. 로그 변경, author 추가.

git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-profiler-bootstrap/trunk@4051 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
Chisu Yu
2014-06-18 09:49:51 +00:00
parent 11976df976
commit 09ec79f527
@@ -15,6 +15,7 @@ import java.util.regex.Pattern;
/**
* @author emeroad
* @author netspider
*/
public class PinpointBootStrap {
@@ -116,7 +117,7 @@ public class PinpointBootStrap {
value = value.trim();
if (validIdPattern.matcher(value).find()) {
logger.severe("invalid value. value can only contain alphanumeric, dot, dash and underscore. propertyName:" + propertyName + " propertyValue:" + value);
logger.severe("invalid Id. " + propertyName + " can only contain alphanumeric, dot, dash and underscore. value:" + value);
return false;
}