Skip to content

Commit e835f50

Browse files
authored
Update README.md
1 parent 3c8e78e commit e835f50

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
Deobfuscate client log from GWT
22

3+
GWT Client Client Log can be obfuscated when building app for production. It can be difficult if a customer send you an error in your app to understand it easily and quickly with that.
4+
5+
This app allow to de-obfuscate text file of client stacktrace from the war file or the symbol map which throw this exception.
6+
7+
It can be done with the CLI which can take parameters as below and with a GUI interface.
8+
39
```
410
USAGE: gwt-client-log-deobfuscator-jar-with-dependencies.jar [-h] [-l
511
<locale>] [-m <symbolmap>] -o <output> -s <stacktrace> [-u
@@ -15,3 +21,15 @@ USAGE: gwt-client-log-deobfuscator-jar-with-dependencies.jar [-h] [-l
1521
gecko1_8, safari, chrome, firefox
1622
-w,--war <war> Webapp WAR file path
1723
```
24+
25+
Examples :
26+
* From symbol map :
27+
```sh
28+
java -jar -s input.log -m example.symbolMap -l fr -u safari -o output.log
29+
```
30+
31+
* From WAR file :
32+
```sh
33+
java -jar -s input.log -m example.war -l fr -u safari -o output.log
34+
```
35+

0 commit comments

Comments
 (0)