Skip to content

Commit 5b91035

Browse files
authored
Change default tf log level to DEBUG (#37)
1 parent a6cfb00 commit 5b91035

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/applications/resources/environments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Transfer data at scale from data warehouses like S3 into the Cortex environment.
1414
randomize: <bool> # flag to indicate random selection of data (exact dataset size will not be guaranteed when this flag is true)
1515
random_seed: <int> # seed value for randomizing
1616
log_level:
17-
tensorflow: <string> # TensorFlow log level (DEBUG, INFO, WARN, ERROR, or FATAL) (default: INFO)
17+
tensorflow: <string> # TensorFlow log level (DEBUG, INFO, WARN, ERROR, or FATAL) (default: DEBUG)
1818
spark: <string> # Spark log level (ALL, TRACE, DEBUG, INFO, WARN, ERROR, or FATAL) (default: WARN)
1919
data:
2020
<data_config>

pkg/api/userconfig/environments.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ var logLevelValidation = &cr.StructValidation{
103103
{
104104
StructField: "Tensorflow",
105105
StringValidation: &cr.StringValidation{
106-
Default: "INFO",
106+
Default: "DEBUG",
107107
AllowedValues: []string{"DEBUG", "INFO", "WARN", "ERROR", "FATAL"},
108108
},
109109
},

0 commit comments

Comments
 (0)