-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup project and dependencies (#243)
- Loading branch information
Showing
11 changed files
with
76 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
-Xms1g -Xmx8g -Xss4m | ||
-Xmx4g |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,43 @@ | ||
# Enable the console logging handler and the file handler to | ||
# write rotating log files under buck-out/log/buck-*.log in the | ||
# project(s) being used. | ||
handlers=com.facebook.buck.cli.bootstrapper.ConsoleHandler,com.facebook.buck.cli.bootstrapper.CompressingFileHandler | ||
.level=FINE | ||
|
||
# Log to buck-out/log/buck-*log.gz | ||
com.facebook.buck.log.CompressingFileHandler.pattern=buck-out/log/buck-%g.log.gz | ||
# Enable console logging handler and file handler to write rotating log files under | ||
# buck-out/log/buck-*.log in the project(s) being used. | ||
handlers=com.facebook.buck.cli.bootstrapper.ConsoleHandler,com.facebook.buck.cli.bootstrapper.LogFileHandler,com.facebook.buck.cli.bootstrapper.MemoryHandler,java.util.logging.FileHandler | ||
|
||
# Write to disk all log messages not otherwise filtered by the top-level ".level" | ||
# property. | ||
com.facebook.buck.log.CompressingFileHandler.level=ALL | ||
# We handle console events via the event bus, so disable console logging by default. | ||
com.facebook.buck.log.ConsoleHandler.level=SEVERE | ||
|
||
# Ignore the environment and always write UTF-8 to files. | ||
com.facebook.buck.log.CompressingFileHandler.encoding=UTF-8 | ||
# http client is way too chatty at FINER level. | ||
httpclient.wire.content.level=SEVERE | ||
httpclient.wire.header.level=SEVERE | ||
|
||
# Replace the default fugly multiline log formatter with a custom one. | ||
com.facebook.buck.log.CompressingFileHandler.formatter=com.facebook.buck.cli.bootstrapper.LogFormatter | ||
# Log to buck-out/log/buck-*.log. | ||
java.util.logging.FileHandler.pattern=buck-out/log/buck-%g.log | ||
|
||
# Write to disk all log messages not otherwise filtered by the top-level ".level" property. | ||
java.util.logging.FileHandler.level=ALL | ||
|
||
# Rotate up to this many log files, then start deleting the oldest one. | ||
com.facebook.buck.log.CompressingFileHandler.count=5 | ||
java.util.logging.FileHandler.count=5 | ||
|
||
# Replace the default fugly multiline log formatter with a custom one. | ||
java.util.logging.FileHandler.formatter=com.facebook.buck.cli.bootstrapper.LogFormatter | ||
|
||
# Ignore the environment and always write UTF-8 to files. | ||
java.util.logging.FileHandler.encoding=UTF-8 | ||
|
||
# Use a circular buffer to store high granularity logging in memory, only interesting if we hit | ||
# an error. | ||
com.facebook.buck.log.memory.MemoryHandler.level=ALL | ||
|
||
# Define the buffer size. | ||
com.facebook.buck.log.memory.MemoryHandler.size=100 | ||
|
||
# Define the push level. | ||
com.facebook.buck.log.memory.MemoryHandler.push=SEVERE | ||
|
||
# Max size in bytes all logs will take. | ||
com.facebook.buck.log.LogFileHandler.max_size_bytes=100000 | ||
|
||
# This limits the log directories | ||
# Max number of logs preserved in disk. | ||
com.facebook.buck.log.LogFileHandler.count=5 | ||
com.facebook.buck.log.LogFileHandler.max_size_bytes=1000000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
ec12e586dfcd9bbd4be7343b4b179bf119025f81 | ||
0ba2b70d8eca58c704db10332306a29fd1dfddd4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.