about summary refs log tree commit diff
path: root/src/main.rs
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2018-06-17T20·36+0200
committerVincent Ambo <mail@tazj.in>2018-06-17T20·36+0200
commit9f29992d03d6bb941a8bfc16a29c4a72a72fc34a (patch)
tree384ad1c9d5353369fcd94834c28158113ab937c8 /src/main.rs
parent208b5dec2cad72f752c091c349a5e954047b74ff (diff)
refactor(main): Split LOG_NAME & LOG_STREAM variables
Splitting these in two lets users better configure how the logs show
up in Stackdriver Logging.
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 9db3c94ecf..33ca57dddb 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -153,7 +153,7 @@ fn get_project_id() -> String {
 /// On non-GCP machines the value is determined by using the
 /// `GOOGLE_CLOUD_PROJECT` and `LOG_NAME` environment variables.
 fn determine_monitored_resource() -> Value {
-    if let Ok(log) = env::var("LOG_NAME") {
+    if let Ok(log) = env::var("LOG_STREAM") {
         json!({
             "type": "logging_log",
             "labels": {