Skip to content

Change default Tensorflow log level to DEBUG #37

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

Merged
merged 1 commit into from
Mar 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion docs/applications/resources/environments.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Transfer data at scale from data warehouses like S3 into the Cortex environment.
randomize: <bool> # flag to indicate random selection of data (exact dataset size will not be guaranteed when this flag is true)
random_seed: <int> # seed value for randomizing
log_level:
tensorflow: <string> # TensorFlow log level (DEBUG, INFO, WARN, ERROR, or FATAL) (default: INFO)
tensorflow: <string> # TensorFlow log level (DEBUG, INFO, WARN, ERROR, or FATAL) (default: DEBUG)
spark: <string> # Spark log level (ALL, TRACE, DEBUG, INFO, WARN, ERROR, or FATAL) (default: WARN)
data:
<data_config>
Expand Down
2 changes: 1 addition & 1 deletion pkg/api/userconfig/environments.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ var logLevelValidation = &cr.StructValidation{
{
StructField: "Tensorflow",
StringValidation: &cr.StringValidation{
Default: "INFO",
Default: "DEBUG",
AllowedValues: []string{"DEBUG", "INFO", "WARN", "ERROR", "FATAL"},
},
},
Expand Down