Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
248 changes: 89 additions & 159 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ auto-launcher = "1.0.3"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4", features = ["derive", "env"] }
clap_usage = "2"
clx = "2"
comfy-table = "7.1.3"
console = "0.16"
cron = "0.16"
Expand Down Expand Up @@ -131,3 +132,4 @@ inherits = "release"
lto = true
strip = true
codegen-units = 1

7 changes: 7 additions & 0 deletions docs/public/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -532,6 +532,13 @@
"string",
"null"
]
},
"startup_log_timestamps": {
"description": "Show timestamps in startup log output",
"type": [
"boolean",
"null"
]
}
}
},
Expand Down
14 changes: 14 additions & 0 deletions settings.toml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,20 @@ By default, pitchfork searches well-known locations for the mise binary:
Set this to an absolute path if mise is installed elsewhere.
"""

[general.startup_log_timestamps]
type = "Bool"
env = "PITCHFORK_STARTUP_LOG_TIMESTAMPS"
default = "false"
description = "Show timestamps in startup log output"
docs = """
When enabled, pitchfork prefixes each startup log line and result line
with a timestamp (e.g. `19:03:15`), making it easier to see how long
each daemon took to start.

When disabled (default), a dim bullet (`•`) is used instead to keep
the output compact and aligned with the spinner / status icons.
"""

# =============================================================================
# IPC (Inter-Process Communication) Settings
# =============================================================================
Expand Down
Loading
Loading