Gelin Luo

Results 184 comments of Gelin Luo

Further finding, I have replaced the shell based `sonar-scanner` with Jenkins' integrated SonarQuebe scanner: ![image](https://user-images.githubusercontent.com/216930/29597596-000306f6-8807-11e7-83cb-bfc8fc0900c6.png) And I can see a huge amount of tslint warnings in the jenkins job log:...

Here is my `sonar-project.properties` file content: ``` 1 sonar.projectKey=myproj 2 sonar.projectName=My Project 3 sonar.projectVersion=2.0.0 4 5 sonar.sources=src 6 sonar.sourceEncoding=UTF-8 7 sonar.language=ts 8 9 sonar.host.url=http://localhost:9000 10 sonar.login= 11 12 sonar.scm.disabled=true 13...

The Jenkins log could be found at https://gist.github.com/greenlaw110/0515201a48c25d5661a0d4c878c5a54c

I think this is exactly the same issue with #172

Before fix: ``` GH1332[2CmLfs0j9]>.amtl +----------------------------------------------------+-------------+-------+---------+ | NAME | ACCUMULATED | COUNT | AVG | +----------------------------------------------------+-------------+-------+---------+ | act:http:act:http:com.mycom.gh1322.AppEntry.getFoo | 40.93ms | 1 | 40.93ms | | act:http:act:http | 40.93ms | 1...

After fix: ``` GH1332[2CmLfs1ja]>.amtl +----------------------------------------------------+-------------+-------+---------+ | NAME | ACCUMULATED | COUNT | AVG | +----------------------------------------------------+-------------+-------+---------+ | act:http:act:http:com.mycom.gh1322.AppEntry.getFoo | 69.85ms | 2 | 34.92ms | | act:http:act:http | 69.85ms | 2...

Okay I found if I comment out the following highlighted line I can input Chinese characters: ![image](https://cloud.githubusercontent.com/assets/216930/15427595/958f53b6-1ed9-11e6-9e74-5e65f8c978c6.png)

If there are anything wrong with automate testing in batch mode, then the developer should run the app in dev mode and then navigate browser to `/~/test` to get detail...

Trace now support trace theme: Call BetterLogsPlugin.setTraceThemes("order_process", "user_register", ...); to set current trace theme to be output on your application methods, set trace theme(s); @Trace("order_process") public void orderForm(...) {...}; @Trace("user_register")...