blob: ce811c017b1fe624b7a114361a4fdbe9353c513e [file] [log] [blame]
Marc Kupietzb1dec012025-06-04 17:16:57 +02001% Generated by roxygen2: do not edit by hand
2% Please edit documentation in R/logging.R
3\name{format_duration}
4\alias{format_duration}
5\title{Format duration in seconds to human-readable format}
6\usage{
7format_duration(seconds)
8}
9\arguments{
10\item{seconds}{numeric duration in seconds}
11}
12\value{
13character string with formatted duration
14}
15\description{
16Converts a duration in seconds to a formatted string with days, hours, minutes, and seconds.
17Used for ETA calculations and progress reporting.
18}
19\examples{
20\dontrun{
21format_duration(3661) # "01h 01m 01s"
22format_duration(86461) # "1d 00h 01m 01s"
23}
24}
25\keyword{internal}