import mx.logging.Log; import org.osflash.thunderbolt.ThunderBoltTarget; // init ThunderBoltTarget _target = new ThunderBoltTarget(); /* You can disable the time, level or category as well _target.includeTime = false; _target.includeLevel = false; _target.includeCategory = false; */ _target.filters = ["de.websector.playground.ThunderBoltTargetExample"]; Log.addTarget(_target); // start logging Log.getLogger("de.websector.playground.ThunderBoltTargetExample").info("Just an info message.");