diff options
author | Kanagaraj Manickam <mkr1481@gmail.com> | 2020-03-10 11:17:55 +0530 |
---|---|---|
committer | Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com> | 2020-03-10 11:17:55 +0530 |
commit | 0c96183a143a91a09e9d0d9b17d00466a83cb855 (patch) | |
tree | 4588fba0b6175e25fc2a644adecc0523ddf198ae /grpc/grpc-client | |
parent | f9d859461d6f1fbe42f99e7483674a6a6b0261d6 (diff) |
Fix the versioning issue
Issue-ID: CLI-257
Change-Id: I194d8389f0d4fef116b9a87d484ad8b78ad401a5
Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Diffstat (limited to 'grpc/grpc-client')
-rw-r--r-- | grpc/grpc-client/pom.xml | 2 | ||||
-rw-r--r-- | grpc/grpc-client/src/main/resources/log4j2.properties | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/grpc/grpc-client/pom.xml b/grpc/grpc-client/pom.xml index 0b4adfe1..461a0402 100644 --- a/grpc/grpc-client/pom.xml +++ b/grpc/grpc-client/pom.xml @@ -18,7 +18,7 @@ <parent> <groupId>org.onap.cli</groupId> <artifactId>oclip-grpc</artifactId> - <version>5.0.1</version> + <version>5.0.2-SNAPSHOT</version> </parent> <artifactId>oclip-grpc-client</artifactId> <name>oclip/grpc/client</name> diff --git a/grpc/grpc-client/src/main/resources/log4j2.properties b/grpc/grpc-client/src/main/resources/log4j2.properties index 9ccd2266..6b6838cc 100644 --- a/grpc/grpc-client/src/main/resources/log4j2.properties +++ b/grpc/grpc-client/src/main/resources/log4j2.properties @@ -43,8 +43,8 @@ appender.stdout.layout.pattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n # Redirect log messages to a log file, support file rolling. appender.file.type = RollingFile appender.file.name = RollingFile -appender.file.fileName=${env:OPEN_CLI_HOME}/logs/open-cli.log -appender.file.filePattern=${env:OPEN_CLI_HOME}/logs/open-cli.%d{yyyy-MM-dd-HH:mm:ss}.log +appender.file.fileName=${env:OPEN_CLI_HOME:-.}/logs/open-cli.log +appender.file.filePattern=${env:OPEN_CLI_HOME:-.}/logs/open-cli.%d{yyyy-MM-dd-HH:mm:ss}.log appender.file.append=true appender.file.policies.type=Policies appender.file.policies.size.type=SizeBasedTriggeringPolicy |