mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Better fix for ALF-12541 - AMP files need to be able to be pinned to specific "edition(s)" of Alfresco
Share doesn't have a version.properties file so I need to cater for that scenario. I didn't want to create the LogOutput interface but its a stop-gap until the MMT gets re-worked. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@33793 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
15
source/java/org/alfresco/repo/module/tool/LogOutput.java
Normal file
15
source/java/org/alfresco/repo/module/tool/LogOutput.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package org.alfresco.repo.module.tool;
|
||||
|
||||
/**
|
||||
* I didn't want to create this. The module management tool has an outputMessage method. I needed an implentation-independent way of outputting
|
||||
* a message from a helper class without relying on a Logging framework or a Module Management Tool Class.
|
||||
*
|
||||
* Hopefully this will be removed when the code is refactored.
|
||||
*
|
||||
* @author Gethin James
|
||||
*/
|
||||
public interface LogOutput
|
||||
{
|
||||
|
||||
public void info(Object message);
|
||||
}
|
Reference in New Issue
Block a user