Module Stdune.Console

Manages the console

module Backend : sig ... end

The main backend for the application

include Backend.S
val print_user_message : User_message.t -> unit

Format and print a user message to the console

val set_status_line : User_message.Style.t Pp.t option -> unit

Change the status line

val reset : unit -> unit

Reset the log output

val print : User_message.Style.t Pp.t list -> unit

print paragraphs is a short-hand for:

print_user_message (User_message.make paragraphs) 
module Status_line : sig ... end