5 changed files with 69 additions and 17 deletions
@ -1,5 +1,9 @@
|
||||
# Changelog for storage-manager-wrapper |
||||
|
||||
## [v2.6.0-SNAPSHOT] 2020-11-12 |
||||
|
||||
* adding new constructor with the backendType as input parameter |
||||
|
||||
## [v2.5.3] 2019-03-20 |
||||
* Added wrapper for HomeLibrary configuration related to the new preproduction infrastructure |
||||
|
@ -1,15 +0,0 @@
|
||||
log4j.rootLogger=DEBUG, A1, stdout |
||||
log4j.appender.A1=org.apache.log4j.RollingFileAppender |
||||
log4j.appender.A1.File=log.txt |
||||
log4j.appender.A1.layout=org.apache.log4j.PatternLayout |
||||
log4j.appender.A1.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n |
||||
# ***** Max file size is set to 100KB |
||||
log4j.appender.A1.MaxFileSize=100MB |
||||
# ***** Keep one backup file |
||||
log4j.appender.A1.MaxBackupIndex=1 |
||||
|
||||
#CONSOLE |
||||
log4j.appender.stdout=org.apache.log4j.ConsoleAppender |
||||
log4j.appender.stdout.Threshold=INFO |
||||
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout |
||||
log4j.appender.stdout.layout.ConversionPattern=[%t] %-5p %c %d{dd MMM yyyy ;HH:mm:ss.SSS} - %m%n |
@ -0,0 +1,5 @@
|
||||
package org.gcube.contentmanager.storageclient.wrapper; |
||||
|
||||
public enum BackendType { |
||||
MongoDB, S3 |
||||
} |
Loading…
Reference in new issue