Skip to content

Commit

Permalink
feat: dxopal server now prints access log (fix #31)
Browse files Browse the repository at this point in the history
  • Loading branch information
yhara committed Jan 29, 2020
1 parent 788dc30 commit 538bcbe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
## HEAD

- feat: Better error msg (#29)
- feat: Support Window.fps= (#30)
- feat: dxopal server prints access log (#31)

## v1.4.4 (2020-01-21)

Expand Down
2 changes: 1 addition & 1 deletion exe/dxopal
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ module DXOpal
puts "Starting DXOpal Server"
puts "(Open http://localhost:#{options[:port]}/index.html in the browser)"
puts "---"
app = Rack::Directory.new(Dir.pwd)
app = Rack::CommonLogger.new(Rack::Directory.new(Dir.pwd))
Rack::Server.start(app: app, Port: options[:port])
end
end
Expand Down

0 comments on commit 538bcbe

Please sign in to comment.