Remove double spaces in log messages [skip ci]

This commit is contained in:
alandavis
2021-08-25 11:46:25 +01:00
parent a9f19de31c
commit 439a9254a3

View File

@@ -2,7 +2,7 @@
* #%L * #%L
* Alfresco Repository * Alfresco Repository
* %% * %%
* Copyright (C) 2019 Alfresco Software Limited * Copyright (C) 2021 Alfresco Software Limited
* %% * %%
* This file is part of the Alfresco software. * This file is part of the Alfresco software.
* If the software was purchased under a paid Alfresco license, the terms of * If the software was purchased under a paid Alfresco license, the terms of
@@ -120,21 +120,21 @@ public class LocalSynchronousTransformClient implements SynchronousTransformClie
if (logger.isDebugEnabled()) if (logger.isDebugEnabled())
{ {
logger.debug(TRANSFORM + " requested " + renditionName); logger.debug(TRANSFORM + "requested " + renditionName);
} }
transform.transform(reader, writer, actualOptions, renditionName, sourceNodeRef); transform.transform(reader, writer, actualOptions, renditionName, sourceNodeRef);
if (logger.isDebugEnabled()) if (logger.isDebugEnabled())
{ {
logger.debug(TRANSFORM + " created " + renditionName); logger.debug(TRANSFORM + "created " + renditionName);
} }
} }
catch (Exception e) catch (Exception e)
{ {
if (logger.isDebugEnabled()) if (logger.isDebugEnabled())
{ {
logger.debug(TRANSFORM + " failed " + renditionName, e); logger.debug(TRANSFORM + "failed " + renditionName, e);
} }
throw e; throw e;
} }