Changes between Version 3 and Version 4 of AnotherPluginDevelopmentGuide


Ignore:
Timestamp:
30.06.2012 03:05:35 (12 years ago)
Author:
dgf
Comment:

remove dev logging

Legend:

Unmodified
Added
Removed
Modified
  • AnotherPluginDevelopmentGuide

    v3 v4  
    493493import static de.deepamehta.plugins.example.model.ExampleTopic.*; 
    494494 
    495 import java.util.logging.Logger; 
    496  
    497495import org.codehaus.jettison.json.JSONObject; 
    498496 
     
    521519    } 
    522520 
    523     private Logger log = Logger.getLogger(getClass().getName()); 
    524  
    525521    /** 
    526522     * Creates a new <code>Example</code> topic from <code>ExampleTopic</code> model. 
    527523     */ 
    528524    public Example(ExampleTopic model, DeepaMehtaService dms, ClientState clientState) { 
    529         log.warning("CREATE EXAMPLE FROM MODEL" + model); 
    530525        topic = dms.createTopic(model, clientState); 
    531         log.warning("CREATED TOPIC " + topic); 
    532526        this.dms = dms; 
    533527    }