/**
  * Returns an instance
  *
  * @return PlentymarketsLogger
  */
 public static function getInstance()
 {
     if (!self::$Instance instanceof self) {
         self::$Instance = new self();
     }
     return self::$Instance;
 }