Compare commits

...

5 Commits

Author SHA1 Message Date
jaikant79
f4e1655b45 logger corrections update 2025-02-20 16:17:55 +05:30
jaikant79
1565b5bb79 logger corrections update 2025-02-20 16:03:22 +05:30
jaikant79
b01fc2263d logger corrections 2025-02-20 15:42:15 +05:30
jaikant79
fb4040793c logger corrections 2025-02-20 14:25:55 +05:30
jaikant79
b03a5cd9e8 logger corrections 2025-02-20 13:17:23 +05:30

View File

@@ -166,14 +166,14 @@ public class CombinedConfig extends CombinedTransformConfig
}
catch (IOException e)
{
throw new AlfrescoRuntimeException("Failed to connect or to read the response from "+remoteType+
throw new AlfrescoRuntimeException("This error was generated because the engine requires Transform AIO but it is not being used "+remoteType+
" on " + url, e);
}
}
catch (AlfrescoRuntimeException e)
{
log.error(e.getMessage());
log.error(e.getMsgId());
successReadingConfig = false;
}
return successReadingConfig;
@@ -217,6 +217,7 @@ public class CombinedConfig extends CombinedTransformConfig
/**
* Adds a PassThrough transform where the source and target mimetypes are identical, or transforms to "text/plain"
* from selected text based types.
*
* @param mimetypeService to find all the mimetypes
*/
public void addPassThroughTransformer(MimetypeService mimetypeService, AbstractTransformRegistry registry)