就是这段 static 
    {
        log = Logger.getLogger(class$com$ptf$command$CommandExecutor != null ? class$com$ptf$command$CommandExecutor : (class$com$ptf$command$CommandExecutor = class$("com.ptf.command.CommandExecutor")));
        if(Configuration.getParamInt("target-local-flag") == 1)
            if(initExecutor(0))
                System.out.println("*** | > \u672C\u5730\u5316\u547D\u4EE4\u6267\u884C\u5668\u521D\u59CB\u5316\u6210\u529F");
            else
                System.out.println("*** | > \u672C\u5730\u5316\u547D\u4EE4\u6267\u884C\u5668\u521D\u59CB\u5316\u5931\u8D25!");
        if(Configuration.getParamInt("target-ejb-flag") == 1)
            if(initExecutor(1))
                System.out.println("*** | > EJB\u547D\u4EE4\u6267\u884C\u5668\u521D\u59CB\u5316\u6210\u529F");
            else
                System.out.println("*** | > EJB\u547D\u4EE4\u6267\u884C\u5668\u521D\u59CB\u5316\u5931\u8D25");
        if(Configuration.getParamInt("target-soap-flag") == 1)
            if(initExecutor(2))
                System.out.println("*** | > SOAP\u547D\u4EE4\u6267\u884C\u5668\u521D\u59CB\u5316\u6210\u529F");
            else
                System.out.println("*** | > SOAP\u547D\u4EE4\u6267\u884C\u5668\u521D\u59CB\u5316\u5931\u8D25");
        if(Configuration.getParamInt("target-insolation-flag") == 1)
            if(initExecutor(3))
                System.out.println("*** | > \u9694\u79BB\u673A\u547D\u4EE4\u6267\u884C\u5668\u521D\u59CB\u5316\u6210\u529F");
            else
                System.out.println("*** | > \u9694\u79BB\u673A\u547D\u4EE4\u6267\u884C\u5668\u521D\u59CB\u5316\u5931\u8D25");
    }
其中log = Logger.getLogger(class$com$ptf$command$CommandExecutor != null ? class$com$ptf$command$CommandExecutor : (class$com$ptf$command$CommandExecutor = class$("com.ptf.command.CommandExecutor")));
我知道是这样的public final Static Logger log = Logger.getLogger(CommandExecutor.class),那其他的应该是什么呢