-
Notifications
You must be signed in to change notification settings - Fork 20
#357 log message on starting proxy #564
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
Changes from 1 commit
b8472e8
a63bd6a
67066fd
14f27b6
d8cf7b2
b5673ec
d6fea32
c62b4f1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| #!/bin/bash | ||
| echo $(date "+%F %X.%3N") I $(basename "$0"):${LINENO} $$ Proxy:Undefined {} | ||
|
|
||
| if [ -z "$SOLANA_URL" ]; then | ||
| echo "SOLANA_URL is not set" | ||
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| #!/bin/sh | ||
| echo $(date "+%F %X.%3N") I $(basename "$0"):${LINENO} $$ Faucet:Undefined {} | ||
|
|
||
| if [ -z "$SOLANA_URL" ]; then | ||
| echo "SOLANA_URL is not set" | ||
|
||
|
|
@@ -20,4 +21,4 @@ if [ "$(spl-token balance "$NEON_TOKEN_MINT" || echo 0)" -eq 0 ]; then | |
| exit 1 | ||
| fi | ||
|
|
||
| faucet run | ||
| faucet run | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't we need to change logging format here too
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Honestly, I looked at this line, Ivan
It doesn't have any heavy operation after previous logging note. That's why I left it as it is
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done