You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"The directory where the Daemon logs will be saved.",
46
54
),
47
-
pgt_log_prefix:PgTEnvVariable::new(
48
-
"PGT_LOG_PREFIX_NAME",
55
+
pgls_log_level:PgLSEnvVariable::new(
56
+
"PGLS_LOG_LEVEL",
57
+
"Allows to change the log level. Default is debug. This will only affect \"pgt*\" crates. All others are logged with info level.",
58
+
),
59
+
pgls_log_prefix:PgLSEnvVariable::new(
60
+
"PGLS_LOG_PREFIX_NAME",
49
61
"A prefix that's added to the name of the log. Default: `server.log.`",
50
62
),
51
-
pgt_config_path:PgTEnvVariable::new(
52
-
"PGT_CONFIG_PATH",
63
+
pgls_config_path:PgLSEnvVariable::new(
64
+
"PGLS_CONFIG_PATH",
53
65
"A path to the configuration file",
54
66
),
67
+
68
+
pgt_log_path:PgLSEnvVariable::new(
69
+
"PGT_LOG_PATH",
70
+
"The directory where the Daemon logs will be saved. Deprecated, use PGLS_LOG_PATH instead.",
71
+
),
72
+
pgt_log_level:PgLSEnvVariable::new(
73
+
"PGT_LOG_LEVEL",
74
+
"Allows to change the log level. Default is debug. This will only affect \"pgt*\" crates. All others are logged with info level. Deprecated, use PGLS_LOG_LEVEL instead.",
75
+
),
76
+
pgt_log_prefix:PgLSEnvVariable::new(
77
+
"PGT_LOG_PREFIX_NAME",
78
+
"A prefix that's added to the name of the log. Default: `server.log`. Deprecated, use PGLS_LOG_PREFIX_NAME instead.",
79
+
),
80
+
pgt_config_path:PgLSEnvVariable::new(
81
+
"PGT_CONFIG_PATH",
82
+
"A path to the configuration file. Deprecated, use PGLS_CONFIG_PATH instead.",
83
+
),
55
84
}
56
85
}
57
86
}
58
87
59
-
pubstructPgTEnvVariable{
88
+
pubstructPgLSEnvVariable{
60
89
/// The name of the environment variable
61
90
name:&'staticstr,
62
91
/// The description of the variable.
63
92
// This field will be used in the website to automate its generation
0 commit comments