/**
  * Returns the keynames of the currently active streams
  *
  * @return array Array of configured log streams.
  */
 public static function configured()
 {
     if (empty(self::$_Collection)) {
         self::_init();
     }
     return self::$_Collection->attached();
 }