From d33ab34d75726dad9029909ae0438ed8a08e2b35 Mon Sep 17 00:00:00 2001 From: Leopold Schabel Date: Fri, 11 Dec 2020 02:51:11 +0100 Subject: [PATCH] Remove "Timezone For Log Messages" section (#14014) To my understanding, the Solana process always logs a UTC timestamp anyway, so this is not needed. Plus, using PST on servers is really weird from a systems engineering point of view. --- docs/src/running-validator/validator-monitor.md | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/docs/src/running-validator/validator-monitor.md b/docs/src/running-validator/validator-monitor.md index 9cb93c5ae7..879453c41a 100644 --- a/docs/src/running-validator/validator-monitor.md +++ b/docs/src/running-validator/validator-monitor.md @@ -45,17 +45,3 @@ curl -X POST -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","id":1, "m # Returns info about the current epoch. slotIndex should progress on subsequent calls. curl -X POST -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","id":1, "method":"getEpochInfo"}' http://devnet.solana.com ``` - -## Timezone For Log Messages - -Log messages emitted by your validator include a timestamp. When sharing logs -with others to help triage issues, that timestamp can cause confusion as it does -not contain timezone information. - -To make it easier to compare logs between different sources we request that -everybody use Pacific Time on their validator nodes. In Linux this can be -accomplished by running: - -```bash -sudo ln -sf /usr/share/zoneinfo/America/Los_Angeles /etc/localtime -```