Skip to content

Commit a0dd73d

Browse files
author
Aaron Gotwalt
committed
Log to stdout, don't use pushd
1 parent 0a33e4d commit a0dd73d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Procfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
web: pushd assets; python -m SimpleHTTPServer 3169
1+
web: cd assets; python -m SimpleHTTPServer 3169
22
daemon: bundle exec bin/ghosty daemon

Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Ghosty turns any Sonos-powered home into the haunted house of the future. This i
1515
* **minimum_frequency** controls how frequently the ghost will appear.
1616

1717
## Running
18-
For normal ghost operations, `foreman start` will start a simple HTTP server to serve files and launch the daemon, which will randomly schedule plays. Ghosty keeps a log of plays in *./ghosty.log*.
18+
For normal ghost operations, `foreman start` will start a simple HTTP server to serve files and launch the daemon, which will randomly schedule plays.
1919

2020
## CLI Methods
2121
* `ghosty daemon` - starts the scheduling daemon

lib/ghosty/logger.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def self.error(message)
1919
end
2020

2121
def self.instance
22-
@instance ||= MonoLogger.new(File.join(File.expand_path('../../../', __FILE__), 'ghosty.log'))
22+
@instance ||= MonoLogger.new(STDOUT)
2323
end
2424

2525
end

0 commit comments

Comments
 (0)