We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 10e0b95 + 5ba8c02 commit 60c5c3eCopy full SHA for 60c5c3e
browsermob-dist/src/main/java/net/lightbody/bmp/proxy/Main.java
@@ -39,6 +39,11 @@ private static class LogHolder {
39
public static void main(String[] args) {
40
configureLogging();
41
42
+ if (args.length > 0 && "--version".equals(args[0])) {
43
+ System.out.println("BrowserMob Proxy " + BrowserMobProxyUtil.getVersionString());
44
+ System.exit(0);
45
+ }
46
+
47
final Injector injector = Guice.createInjector(new ConfigModule(args), new JettyModule(), new SitebricksModule() {
48
@Override
49
protected void configureSitebricks() {
0 commit comments