Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed #184 #212

Merged
merged 4 commits into from
Apr 8, 2016
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
#173 Added the URL for WebGoat to the console output
  • Loading branch information
nbaars committed Mar 18, 2016
commit 7a7fb088ad8d85cdce3c307fad2ba41bfe45025f
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,7 @@ public void init() throws ServletException {
httpDateFormat.setTimeZone(TimeZone.getTimeZone("GMT"));
propertiesPath = getServletContext().getRealPath("/WEB-INF/webgoat.properties");
webgoatContext = new WebgoatContext(this);
logger.info("Browse to http://localhost:8080/WebGoat and happy hacking!");
}

/**
Expand Down
3 changes: 2 additions & 1 deletion webgoat-container/src/main/resources/log4j.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ log4j.appender.CONSOLE.layout.conversionPattern=%d{yyyy-MM-dd HH:mm:ss,SSS} %-5p


# a little less spring output
log4j.category.org.springframework = INFO
log4j.category.org.springframework = INFO
log4j.category.org.apache=INFO

log4j.appender.default.out=org.apache.log4j.ConsoleAppender
log4j.appender.default.out.threeshold=DEBUG
Expand Down