diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-20 13:51:14 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-10-07 13:20:01 +0200 |
commit | 060956beaa577c6da46b74dd2f6f4a82a59b884d (patch) | |
tree | 632c39004fbb9588fffe120efe766ba2e0aaf82a | |
parent | 610f3388c781055fcfc3f1ea8a027b1b9cbc5bae (diff) |
fix classname in logger
Change-Id: Id4d954059d63036b78cfeb7b14a7ebd8eae73f46
-rw-r--r-- | reportbuilder/java/org/libreoffice/report/StorageRepository.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reportbuilder/java/org/libreoffice/report/StorageRepository.java b/reportbuilder/java/org/libreoffice/report/StorageRepository.java index dbb1266a3de6..2f3e4249fd59 100644 --- a/reportbuilder/java/org/libreoffice/report/StorageRepository.java +++ b/reportbuilder/java/org/libreoffice/report/StorageRepository.java @@ -49,7 +49,7 @@ import org.apache.commons.logging.LogFactory; public class StorageRepository implements InputRepository, OutputRepository { - private static final Log LOGGER = LogFactory.getLog(SDBCReportDataFactory.class); + private static final Log LOGGER = LogFactory.getLog(StorageRepository.class); private static final String REPORT_PROCESSING_FAILED = "ReportProcessing failed"; private XStorage input; private XStorage output; |