mirror of
https://github.com/nushell/nushell.git
synced 2025-04-29 23:54:26 +02:00
<!-- if this PR closes one or more issues, you can automatically link the PR with them by using one of the [*linking keywords*](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword), e.g. - this PR should close #xxxx - fixes #xxxx you can also mention related issues, PRs or discussions! --> closes #15610 . # Description <!-- Thank you for improving Nushell. Please, check our [contributing guide](../CONTRIBUTING.md) and talk to the core team before making major changes. Description of your pull request goes here. **Provide examples and/or screenshots** if your changes affect the user experience. --> This PR attempts to improve the performance of `std/log *` by making the following changes: 1. use explicit piping instead of `reduce` for constructing the log message 2. constify `log-level`, `log-ansi`, `log-types` etc. 3. use `.` instead of `get` to access `$env` fields # User-Facing Changes <!-- List of all changes that impact the user experience here. This helps us keep track of breaking changes. --> Nothing. # Tests + Formatting <!-- Don't forget to add tests that cover your changes. Make sure you've run and fixed any issues with these commands: - `cargo fmt --all -- --check` to check standard code formatting (`cargo fmt --all` applies these changes) - `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used` to check that you're using the standard code style - `cargo test --workspace` to check that all tests pass (on Windows make sure to [enable developer mode](https://learn.microsoft.com/en-us/windows/apps/get-started/developer-mode-features-and-debugging)) - `cargo run -- -c "use toolkit.nu; toolkit test stdlib"` to run the tests for the standard library > **Note** > from `nushell` you can also use the `toolkit` as follows > ```bash > use toolkit.nu # or use an `env_change` hook to activate it automatically > toolkit check pr > ``` --> # After Submitting <!-- If your PR had any user-facing changes, update [the documentation](https://github.com/nushell/nushell.github.io) after the PR is merged, if necessary. This will help us keep the docs up to date. --> --------- Co-authored-by: Ben Yang <ben@ya.ng> Co-authored-by: suimong <suimong@users.noreply.github.com>
323 lines
8.4 KiB
Plaintext
323 lines
8.4 KiB
Plaintext
const LOG_ANSI = {
|
|
"CRITICAL": (ansi red_bold),
|
|
"ERROR": (ansi red),
|
|
"WARNING": (ansi yellow),
|
|
"INFO": (ansi default),
|
|
"DEBUG": (ansi default_dimmed)
|
|
}
|
|
|
|
export def log-ansi [] {$LOG_ANSI}
|
|
|
|
const LOG_LEVEL = {
|
|
"CRITICAL": 50,
|
|
"ERROR": 40,
|
|
"WARNING": 30,
|
|
"INFO": 20,
|
|
"DEBUG": 10
|
|
}
|
|
|
|
export def log-level [] {$LOG_LEVEL}
|
|
|
|
const LOG_PREFIX = {
|
|
"CRITICAL": "CRT",
|
|
"ERROR": "ERR",
|
|
"WARNING": "WRN",
|
|
"INFO": "INF",
|
|
"DEBUG": "DBG"
|
|
}
|
|
|
|
export def log-prefix [] {$LOG_PREFIX}
|
|
|
|
const LOG_SHORT_PREFIX = {
|
|
"CRITICAL": "C",
|
|
"ERROR": "E",
|
|
"WARNING": "W",
|
|
"INFO": "I",
|
|
"DEBUG": "D"
|
|
}
|
|
|
|
export def log-short-prefix [] {$LOG_SHORT_PREFIX}
|
|
|
|
export-env {
|
|
$env.NU_LOG_FORMAT = $env.NU_LOG_FORMAT? | default "%ANSI_START%%DATE%|%LEVEL%|%MSG%%ANSI_STOP%"
|
|
$env.NU_LOG_DATE_FORMAT = $env.NU_LOG_DATE_FORMAT? | default "%Y-%m-%dT%H:%M:%S%.3f"
|
|
}
|
|
|
|
const LOG_TYPES = {
|
|
"CRITICAL": {
|
|
"ansi": $LOG_ANSI.CRITICAL,
|
|
"level": $LOG_LEVEL.CRITICAL,
|
|
"prefix": $LOG_PREFIX.CRITICAL,
|
|
"short_prefix": $LOG_SHORT_PREFIX.CRITICAL
|
|
},
|
|
"ERROR": {
|
|
"ansi": $LOG_ANSI.ERROR,
|
|
"level": $LOG_LEVEL.ERROR,
|
|
"prefix": $LOG_PREFIX.ERROR,
|
|
"short_prefix": $LOG_SHORT_PREFIX.ERROR
|
|
},
|
|
"WARNING": {
|
|
"ansi": $LOG_ANSI.WARNING,
|
|
"level": $LOG_LEVEL.WARNING,
|
|
"prefix": $LOG_PREFIX.WARNING,
|
|
"short_prefix": $LOG_SHORT_PREFIX.WARNING
|
|
},
|
|
"INFO": {
|
|
"ansi": $LOG_ANSI.INFO,
|
|
"level": $LOG_LEVEL.INFO,
|
|
"prefix": $LOG_PREFIX.INFO,
|
|
"short_prefix": $LOG_SHORT_PREFIX.INFO
|
|
},
|
|
"DEBUG": {
|
|
"ansi": $LOG_ANSI.DEBUG,
|
|
"level": $LOG_LEVEL.DEBUG,
|
|
"prefix": $LOG_PREFIX.DEBUG,
|
|
"short_prefix": $LOG_SHORT_PREFIX.DEBUG
|
|
}
|
|
}
|
|
|
|
def parse-string-level [
|
|
level: string
|
|
] {
|
|
let level = ($level | str upcase)
|
|
|
|
if $level in [$LOG_PREFIX.CRITICAL $LOG_SHORT_PREFIX.CRITICAL "CRIT" "CRITICAL"] {
|
|
$LOG_LEVEL.CRITICAL
|
|
} else if $level in [$LOG_PREFIX.ERROR $LOG_SHORT_PREFIX.ERROR "ERROR"] {
|
|
$LOG_LEVEL.ERROR
|
|
} else if $level in [$LOG_PREFIX.WARNING $LOG_SHORT_PREFIX.WARNING "WARN" "WARNING"] {
|
|
$LOG_LEVEL.WARNING
|
|
} else if $level in [$LOG_PREFIX.DEBUG $LOG_SHORT_PREFIX.DEBUG "DEBUG"] {
|
|
$LOG_LEVEL.DEBUG
|
|
} else {
|
|
$LOG_LEVEL.INFO
|
|
}
|
|
}
|
|
|
|
def parse-int-level [
|
|
level: int,
|
|
--short (-s)
|
|
] {
|
|
if $level >= $LOG_LEVEL.CRITICAL {
|
|
if $short {
|
|
$LOG_SHORT_PREFIX.CRITICAL
|
|
} else {
|
|
$LOG_PREFIX.CRITICAL
|
|
}
|
|
} else if $level >= $LOG_LEVEL.ERROR {
|
|
if $short {
|
|
$LOG_SHORT_PREFIX.ERROR
|
|
} else {
|
|
$LOG_PREFIX.ERROR
|
|
}
|
|
} else if $level >= $LOG_LEVEL.WARNING {
|
|
if $short {
|
|
$LOG_SHORT_PREFIX.WARNING
|
|
} else {
|
|
$LOG_PREFIX.WARNING
|
|
}
|
|
} else if $level >= $LOG_LEVEL.INFO {
|
|
if $short {
|
|
$LOG_SHORT_PREFIX.INFO
|
|
} else {
|
|
$LOG_PREFIX.INFO
|
|
}
|
|
} else {
|
|
if $short {
|
|
$LOG_SHORT_PREFIX.DEBUG
|
|
} else {
|
|
$LOG_PREFIX.DEBUG
|
|
}
|
|
}
|
|
}
|
|
|
|
def current-log-level [] {
|
|
let env_level = ($env.NU_LOG_LEVEL? | default $LOG_LEVEL.INFO)
|
|
|
|
try {
|
|
$env_level | into int
|
|
} catch {
|
|
parse-string-level $env_level
|
|
}
|
|
}
|
|
|
|
def now [] {
|
|
date now | format date $env.NU_LOG_DATE_FORMAT
|
|
}
|
|
|
|
def handle-log [
|
|
message: string,
|
|
formatting: record,
|
|
format_string: string,
|
|
short: bool
|
|
] {
|
|
let log_format = if ($format_string | is-empty) {
|
|
$env.NU_LOG_FORMAT
|
|
} else {
|
|
$format_string
|
|
}
|
|
|
|
let prefix = if $short {
|
|
$formatting.short_prefix
|
|
} else {
|
|
$formatting.prefix
|
|
}
|
|
|
|
custom $message $log_format $formatting.level --level-prefix $prefix --ansi $formatting.ansi
|
|
}
|
|
|
|
# Logging module
|
|
#
|
|
# Log formatting placeholders:
|
|
# - %MSG%: message to be logged
|
|
# - %DATE%: date of log
|
|
# - %LEVEL%: string prefix for the log level
|
|
# - %ANSI_START%: ansi formatting
|
|
# - %ANSI_STOP%: literally (ansi reset)
|
|
#
|
|
# Note: All placeholders are optional, so "" is still a valid format
|
|
#
|
|
# Example: $"%ANSI_START%%DATE%|%LEVEL%|(ansi u)%MSG%%ANSI_STOP%"
|
|
export def main [] {}
|
|
|
|
# Log a critical message
|
|
export def critical [
|
|
message: string, # A message
|
|
--short (-s) # Whether to use a short prefix
|
|
--format (-f): string # A format (for further reference: help std log)
|
|
] {
|
|
let format = $format | default ""
|
|
handle-log $message ($LOG_TYPES.CRITICAL) $format $short
|
|
}
|
|
|
|
# Log an error message
|
|
export def error [
|
|
message: string, # A message
|
|
--short (-s) # Whether to use a short prefix
|
|
--format (-f): string # A format (for further reference: help std log)
|
|
] {
|
|
let format = $format | default ""
|
|
handle-log $message ($LOG_TYPES.ERROR) $format $short
|
|
}
|
|
|
|
# Log a warning message
|
|
export def warning [
|
|
message: string, # A message
|
|
--short (-s) # Whether to use a short prefix
|
|
--format (-f): string # A format (for further reference: help std log)
|
|
] {
|
|
let format = $format | default ""
|
|
handle-log $message ($LOG_TYPES.WARNING) $format $short
|
|
}
|
|
|
|
# Log an info message
|
|
export def info [
|
|
message: string, # A message
|
|
--short (-s) # Whether to use a short prefix
|
|
--format (-f): string # A format (for further reference: help std log)
|
|
] {
|
|
let format = $format | default ""
|
|
handle-log $message ($LOG_TYPES.INFO) $format $short
|
|
}
|
|
|
|
# Log a debug message
|
|
export def debug [
|
|
message: string, # A message
|
|
--short (-s) # Whether to use a short prefix
|
|
--format (-f): string # A format (for further reference: help std log)
|
|
] {
|
|
let format = $format | default ""
|
|
handle-log $message ($LOG_TYPES.DEBUG) $format $short
|
|
}
|
|
|
|
def log-level-deduction-error [
|
|
type: string
|
|
span: record<start: int, end: int>
|
|
log_level: int
|
|
] {
|
|
error make {
|
|
msg: $"(ansi red_bold)Cannot deduce ($type) for given log level: ($log_level).(ansi reset)"
|
|
label: {
|
|
text: ([
|
|
"Invalid log level."
|
|
$" Available log levels in log-level:"
|
|
($LOG_LEVEL | to text | lines | each {|it| $" ($it)" } | to text)
|
|
] | str join "\n")
|
|
span: $span
|
|
}
|
|
}
|
|
}
|
|
|
|
# Log a message with a specific format and verbosity level, with either configurable or auto-deduced %LEVEL% and %ANSI_START% placeholder extensions
|
|
export def custom [
|
|
message: string, # A message
|
|
format: string, # A format (for further reference: help std log)
|
|
log_level: int # A log level (has to be one of the log-level values for correct ansi/prefix deduction)
|
|
--level-prefix (-p): string # %LEVEL% placeholder extension
|
|
--ansi (-a): string # %ANSI_START% placeholder extension
|
|
] {
|
|
if (current-log-level) > ($log_level) {
|
|
return
|
|
}
|
|
|
|
let valid_levels_for_defaulting = [
|
|
$LOG_LEVEL.CRITICAL
|
|
$LOG_LEVEL.ERROR
|
|
$LOG_LEVEL.WARNING
|
|
$LOG_LEVEL.INFO
|
|
$LOG_LEVEL.DEBUG
|
|
]
|
|
|
|
let prefix = if ($level_prefix | is-empty) {
|
|
if ($log_level not-in $valid_levels_for_defaulting) {
|
|
log-level-deduction-error "log level prefix" (metadata $log_level).span $log_level
|
|
}
|
|
|
|
parse-int-level $log_level
|
|
|
|
} else {
|
|
$level_prefix
|
|
}
|
|
|
|
let use_color = ($env.config?.use_ansi_coloring? | $in != false)
|
|
let ansi = if not $use_color {
|
|
""
|
|
} else if ($ansi | is-empty) {
|
|
if ($log_level not-in $valid_levels_for_defaulting) {
|
|
log-level-deduction-error "ansi" (metadata $log_level).span $log_level
|
|
}
|
|
|
|
(
|
|
$LOG_TYPES
|
|
| values
|
|
| each {|record|
|
|
if ($record.level == $log_level) {
|
|
$record.ansi
|
|
}
|
|
} | first
|
|
)
|
|
} else {
|
|
$ansi
|
|
}
|
|
|
|
print --stderr (
|
|
$format
|
|
| str replace --all "%MSG%" $message
|
|
| str replace --all "%DATE%" (now)
|
|
| str replace --all "%LEVEL%" $prefix
|
|
| str replace --all "%ANSI_START%" $ansi
|
|
| str replace --all "%ANSI_STOP%" (ansi reset)
|
|
|
|
)
|
|
}
|
|
|
|
def "nu-complete log-level" [] {
|
|
$LOG_LEVEL | transpose description value
|
|
}
|
|
|
|
# Change logging level
|
|
export def --env set-level [level: int@"nu-complete log-level"] {
|
|
# Keep it as a string so it can be passed to child processes
|
|
$env.NU_LOG_LEVEL = $level | into string
|
|
}
|