2016-09-30 08:25:07 +00:00
|
|
|
//! Rocket's logging infrastructure.
|
|
|
|
|
2020-09-03 05:41:31 +00:00
|
|
|
use std::fmt;
|
2016-10-03 10:39:56 +00:00
|
|
|
use std::str::FromStr;
|
|
|
|
|
2018-01-29 21:16:04 +00:00
|
|
|
use log;
|
2017-06-20 01:29:26 +00:00
|
|
|
use yansi::Paint;
|
2020-09-03 05:41:31 +00:00
|
|
|
use serde::{de, Serialize, Serializer, Deserialize, Deserializer};
|
2016-08-24 08:34:00 +00:00
|
|
|
|
2020-09-03 05:41:31 +00:00
|
|
|
#[derive(Debug)]
|
|
|
|
struct RocketLogger(LogLevel);
|
2018-10-22 02:46:37 +00:00
|
|
|
|
2020-09-03 05:41:31 +00:00
|
|
|
/// Defines the maximum level of log messages to show.
|
2016-10-03 10:39:56 +00:00
|
|
|
#[derive(PartialEq, Eq, Debug, Clone, Copy)]
|
2020-09-03 05:41:31 +00:00
|
|
|
pub enum LogLevel {
|
|
|
|
/// Only shows errors and warnings: `"critical"`.
|
2016-08-24 08:34:00 +00:00
|
|
|
Critical,
|
2020-09-03 05:41:31 +00:00
|
|
|
/// Shows everything except debug and trace information: `"normal"`.
|
2016-08-24 08:34:00 +00:00
|
|
|
Normal,
|
2020-09-03 05:41:31 +00:00
|
|
|
/// Shows everything: `"debug"`.
|
2016-08-24 08:34:00 +00:00
|
|
|
Debug,
|
2020-09-03 05:41:31 +00:00
|
|
|
/// Shows nothing: "`"off"`".
|
2018-07-03 20:47:17 +00:00
|
|
|
Off,
|
2016-08-24 08:34:00 +00:00
|
|
|
}
|
|
|
|
|
2020-09-03 05:41:31 +00:00
|
|
|
impl LogLevel {
|
|
|
|
fn as_str(&self) -> &str {
|
|
|
|
match self {
|
|
|
|
LogLevel::Critical => "critical",
|
|
|
|
LogLevel::Normal => "normal",
|
|
|
|
LogLevel::Debug => "debug",
|
|
|
|
LogLevel::Off => "off",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-24 08:34:00 +00:00
|
|
|
#[inline(always)]
|
2018-07-18 16:45:20 +00:00
|
|
|
fn to_level_filter(self) -> log::LevelFilter {
|
|
|
|
match self {
|
2020-09-03 05:41:31 +00:00
|
|
|
LogLevel::Critical => log::LevelFilter::Warn,
|
|
|
|
LogLevel::Normal => log::LevelFilter::Info,
|
|
|
|
LogLevel::Debug => log::LevelFilter::Trace,
|
|
|
|
LogLevel::Off => log::LevelFilter::Off
|
2016-08-24 08:34:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-03 05:41:31 +00:00
|
|
|
impl FromStr for LogLevel {
|
2017-04-13 07:18:31 +00:00
|
|
|
type Err = &'static str;
|
|
|
|
|
2016-10-03 10:39:56 +00:00
|
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
2020-09-03 05:41:31 +00:00
|
|
|
let level = match &*s.to_ascii_lowercase() {
|
|
|
|
"critical" => LogLevel::Critical,
|
|
|
|
"normal" => LogLevel::Normal,
|
|
|
|
"debug" => LogLevel::Debug,
|
|
|
|
"off" => LogLevel::Off,
|
2018-07-03 20:47:17 +00:00
|
|
|
_ => return Err("a log level (off, debug, normal, critical)")
|
2016-10-03 10:39:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Ok(level)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-03 05:41:31 +00:00
|
|
|
impl fmt::Display for LogLevel {
|
2019-06-13 01:48:02 +00:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2020-09-03 05:41:31 +00:00
|
|
|
write!(f, "{}", self.as_str())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Serialize for LogLevel {
|
|
|
|
fn serialize<S: Serializer>(&self, ser: S) -> Result<S::Ok, S::Error> {
|
|
|
|
ser.serialize_str(self.as_str())
|
|
|
|
}
|
|
|
|
}
|
2017-01-14 00:45:46 +00:00
|
|
|
|
2020-09-03 05:41:31 +00:00
|
|
|
impl<'de> Deserialize<'de> for LogLevel {
|
|
|
|
fn deserialize<D: Deserializer<'de>>(de: D) -> Result<Self, D::Error> {
|
|
|
|
let string = String::deserialize(de)?;
|
|
|
|
LogLevel::from_str(&string).map_err(|_| de::Error::invalid_value(
|
|
|
|
de::Unexpected::Str(&string),
|
|
|
|
&figment::error::OneOf( &["critical", "normal", "debug", "off"])
|
|
|
|
))
|
2017-01-14 00:45:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-04 14:38:06 +00:00
|
|
|
#[doc(hidden)] #[macro_export]
|
2018-01-20 18:41:29 +00:00
|
|
|
macro_rules! log_ { ($name:ident: $($args:tt)*) => { $name!(target: "_", $($args)*) }; }
|
2017-04-13 08:13:25 +00:00
|
|
|
#[doc(hidden)] #[macro_export]
|
2018-01-29 21:16:04 +00:00
|
|
|
macro_rules! launch_info { ($($args:tt)*) => { info!(target: "launch", $($args)*) } }
|
2018-01-20 18:41:29 +00:00
|
|
|
#[doc(hidden)] #[macro_export]
|
2018-01-29 21:16:04 +00:00
|
|
|
macro_rules! launch_info_ { ($($args:tt)*) => { info!(target: "launch_", $($args)*) } }
|
2016-11-04 14:38:06 +00:00
|
|
|
#[doc(hidden)] #[macro_export]
|
2016-08-24 08:34:00 +00:00
|
|
|
macro_rules! error_ { ($($args:expr),+) => { log_!(error: $($args),+); }; }
|
2016-11-04 14:38:06 +00:00
|
|
|
#[doc(hidden)] #[macro_export]
|
2016-08-24 08:34:00 +00:00
|
|
|
macro_rules! info_ { ($($args:expr),+) => { log_!(info: $($args),+); }; }
|
2016-11-04 14:38:06 +00:00
|
|
|
#[doc(hidden)] #[macro_export]
|
2016-08-24 08:34:00 +00:00
|
|
|
macro_rules! trace_ { ($($args:expr),+) => { log_!(trace: $($args),+); }; }
|
2016-11-04 14:38:06 +00:00
|
|
|
#[doc(hidden)] #[macro_export]
|
2016-08-24 08:34:00 +00:00
|
|
|
macro_rules! debug_ { ($($args:expr),+) => { log_!(debug: $($args),+); }; }
|
2016-11-04 14:38:06 +00:00
|
|
|
#[doc(hidden)] #[macro_export]
|
2016-08-24 08:34:00 +00:00
|
|
|
macro_rules! warn_ { ($($args:expr),+) => { log_!(warn: $($args),+); }; }
|
|
|
|
|
2018-01-29 21:16:04 +00:00
|
|
|
impl log::Log for RocketLogger {
|
2017-04-13 08:13:25 +00:00
|
|
|
#[inline(always)]
|
2019-06-13 01:48:02 +00:00
|
|
|
fn enabled(&self, record: &log::Metadata<'_>) -> bool {
|
2018-07-03 20:47:17 +00:00
|
|
|
match self.0.to_level_filter().to_level() {
|
|
|
|
Some(max) => record.level() <= max || record.target().starts_with("launch"),
|
|
|
|
None => false
|
|
|
|
}
|
2016-08-24 08:34:00 +00:00
|
|
|
}
|
|
|
|
|
2019-06-13 01:48:02 +00:00
|
|
|
fn log(&self, record: &log::Record<'_>) {
|
2018-01-29 21:16:04 +00:00
|
|
|
// Print nothing if this level isn't enabled and this isn't launch info.
|
2016-08-24 08:34:00 +00:00
|
|
|
if !self.enabled(record.metadata()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-04-08 02:44:02 +00:00
|
|
|
// Don't print Hyper or Rustls or r2d2 messages unless debug is enabled.
|
2018-01-29 21:16:04 +00:00
|
|
|
let configged_level = self.0;
|
2021-04-08 02:44:02 +00:00
|
|
|
|
|
|
|
let from = |path| record.module_path().map_or(false, |m| m.starts_with(path));
|
|
|
|
let debug_only = from("hyper") || from("rustls") || from("r2d2");
|
|
|
|
if configged_level != LogLevel::Debug && debug_only {
|
2016-10-09 11:29:02 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-29 21:16:04 +00:00
|
|
|
// In Rocket, we abuse targets with suffix "_" to indicate indentation.
|
2018-11-19 10:11:38 +00:00
|
|
|
let is_launch = record.target().starts_with("launch");
|
2018-01-29 21:16:04 +00:00
|
|
|
if record.target().ends_with('_') {
|
2020-09-03 05:41:31 +00:00
|
|
|
if configged_level != LogLevel::Critical || is_launch {
|
2018-11-19 10:11:38 +00:00
|
|
|
print!(" {} ", Paint::default("=>").bold());
|
2018-01-29 21:16:04 +00:00
|
|
|
}
|
2016-08-24 08:34:00 +00:00
|
|
|
}
|
|
|
|
|
2018-01-29 21:16:04 +00:00
|
|
|
match record.level() {
|
2018-11-19 10:11:38 +00:00
|
|
|
log::Level::Info => println!("{}", Paint::blue(record.args()).wrap()),
|
|
|
|
log::Level::Trace => println!("{}", Paint::magenta(record.args()).wrap()),
|
2018-01-29 21:16:04 +00:00
|
|
|
log::Level::Error => {
|
2016-08-24 08:34:00 +00:00
|
|
|
println!("{} {}",
|
2017-06-20 01:29:26 +00:00
|
|
|
Paint::red("Error:").bold(),
|
2018-11-19 10:11:38 +00:00
|
|
|
Paint::red(record.args()).wrap())
|
2016-08-24 08:34:00 +00:00
|
|
|
}
|
2018-01-29 21:16:04 +00:00
|
|
|
log::Level::Warn => {
|
2016-08-24 08:34:00 +00:00
|
|
|
println!("{} {}",
|
2017-06-20 01:29:26 +00:00
|
|
|
Paint::yellow("Warning:").bold(),
|
2018-11-19 10:11:38 +00:00
|
|
|
Paint::yellow(record.args()).wrap())
|
2016-08-24 08:34:00 +00:00
|
|
|
}
|
2018-01-29 21:16:04 +00:00
|
|
|
log::Level::Debug => {
|
2017-06-20 01:29:26 +00:00
|
|
|
print!("\n{} ", Paint::blue("-->").bold());
|
2018-01-29 21:16:04 +00:00
|
|
|
if let Some(file) = record.file() {
|
|
|
|
print!("{}", Paint::blue(file));
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(line) = record.line() {
|
|
|
|
println!(":{}", Paint::blue(line));
|
|
|
|
}
|
|
|
|
|
2016-08-26 08:55:11 +00:00
|
|
|
println!("{}", record.args());
|
2016-08-24 08:34:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-29 21:16:04 +00:00
|
|
|
|
|
|
|
fn flush(&self) {
|
|
|
|
// NOOP: We don't buffer any records.
|
|
|
|
}
|
2016-08-24 08:34:00 +00:00
|
|
|
}
|
|
|
|
|
Test 'secret_key' validation, now on pre-launch.
Prior to this commit, it was not possible to test Rocket crates in
production mode without setting a global secret key or bypassing secret
key checking - the testing script did the latter. The consequence is
that it became impossible to test secret key related failures because
the tests passed regardless.
This commit undoes this. As a consequence, all tests are now aware of
the difference between debug and release configurations, the latter of
which validates 'secret_key' by default. New 'Client::debug()' and
'Client::debug_with()' simplify creating an instance of 'Client' with
configuration in debug mode to avoid undesired test failures.
The summary of changes in this commit are:
* Config 'secret_key' success and failure are now tested.
* 'secret_key' validation was moved to pre-launch from 'Config:from()'.
* 'Config::from()' only extracts the config.
* Added 'Config::try_from()' for non-panicking extraction.
* 'Config' now knows the profile it was extracted from.
* The 'Config' provider sets a profile of 'Config.profile'.
* 'Rocket', 'Client', 'Fairings', implement 'Debug'.
* 'fairing::Info' implements 'Copy', 'Clone'.
* 'Fairings' keeps track of, logs attach fairings.
* 'Rocket::reconfigure()' was added to allow modifying a config.
Internally, the testing script was refactored to properly test the
codebase with the new changes. In particular, it no longer sets a rustc
'cfg' to avoid secret-key checking.
Resolves #1543.
Fixes #1564.
2021-03-09 08:07:43 +00:00
|
|
|
pub(crate) fn init(config: &crate::Config) -> bool {
|
|
|
|
if config.log_level == LogLevel::Off {
|
2018-07-03 20:47:17 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-06-13 01:48:02 +00:00
|
|
|
if !atty::is(atty::Stream::Stdout)
|
2018-10-22 02:46:37 +00:00
|
|
|
|| (cfg!(windows) && !Paint::enable_windows_ascii())
|
Test 'secret_key' validation, now on pre-launch.
Prior to this commit, it was not possible to test Rocket crates in
production mode without setting a global secret key or bypassing secret
key checking - the testing script did the latter. The consequence is
that it became impossible to test secret key related failures because
the tests passed regardless.
This commit undoes this. As a consequence, all tests are now aware of
the difference between debug and release configurations, the latter of
which validates 'secret_key' by default. New 'Client::debug()' and
'Client::debug_with()' simplify creating an instance of 'Client' with
configuration in debug mode to avoid undesired test failures.
The summary of changes in this commit are:
* Config 'secret_key' success and failure are now tested.
* 'secret_key' validation was moved to pre-launch from 'Config:from()'.
* 'Config::from()' only extracts the config.
* Added 'Config::try_from()' for non-panicking extraction.
* 'Config' now knows the profile it was extracted from.
* The 'Config' provider sets a profile of 'Config.profile'.
* 'Rocket', 'Client', 'Fairings', implement 'Debug'.
* 'fairing::Info' implements 'Copy', 'Clone'.
* 'Fairings' keeps track of, logs attach fairings.
* 'Rocket::reconfigure()' was added to allow modifying a config.
Internally, the testing script was refactored to properly test the
codebase with the new changes. In particular, it no longer sets a rustc
'cfg' to avoid secret-key checking.
Resolves #1543.
Fixes #1564.
2021-03-09 08:07:43 +00:00
|
|
|
|| !config.cli_colors
|
2018-10-22 02:46:37 +00:00
|
|
|
{
|
2017-06-20 01:29:26 +00:00
|
|
|
Paint::disable();
|
|
|
|
}
|
|
|
|
|
Test 'secret_key' validation, now on pre-launch.
Prior to this commit, it was not possible to test Rocket crates in
production mode without setting a global secret key or bypassing secret
key checking - the testing script did the latter. The consequence is
that it became impossible to test secret key related failures because
the tests passed regardless.
This commit undoes this. As a consequence, all tests are now aware of
the difference between debug and release configurations, the latter of
which validates 'secret_key' by default. New 'Client::debug()' and
'Client::debug_with()' simplify creating an instance of 'Client' with
configuration in debug mode to avoid undesired test failures.
The summary of changes in this commit are:
* Config 'secret_key' success and failure are now tested.
* 'secret_key' validation was moved to pre-launch from 'Config:from()'.
* 'Config::from()' only extracts the config.
* Added 'Config::try_from()' for non-panicking extraction.
* 'Config' now knows the profile it was extracted from.
* The 'Config' provider sets a profile of 'Config.profile'.
* 'Rocket', 'Client', 'Fairings', implement 'Debug'.
* 'fairing::Info' implements 'Copy', 'Clone'.
* 'Fairings' keeps track of, logs attach fairings.
* 'Rocket::reconfigure()' was added to allow modifying a config.
Internally, the testing script was refactored to properly test the
codebase with the new changes. In particular, it no longer sets a rustc
'cfg' to avoid secret-key checking.
Resolves #1543.
Fixes #1564.
2021-03-09 08:07:43 +00:00
|
|
|
if let Err(e) = log::set_boxed_logger(Box::new(RocketLogger(config.log_level))) {
|
|
|
|
if config.log_level == LogLevel::Debug {
|
2018-01-29 21:16:04 +00:00
|
|
|
eprintln!("Logger failed to initialize: {}", e);
|
2017-05-19 10:29:08 +00:00
|
|
|
}
|
2019-06-30 16:45:17 +00:00
|
|
|
}
|
2018-07-03 20:47:17 +00:00
|
|
|
|
Test 'secret_key' validation, now on pre-launch.
Prior to this commit, it was not possible to test Rocket crates in
production mode without setting a global secret key or bypassing secret
key checking - the testing script did the latter. The consequence is
that it became impossible to test secret key related failures because
the tests passed regardless.
This commit undoes this. As a consequence, all tests are now aware of
the difference between debug and release configurations, the latter of
which validates 'secret_key' by default. New 'Client::debug()' and
'Client::debug_with()' simplify creating an instance of 'Client' with
configuration in debug mode to avoid undesired test failures.
The summary of changes in this commit are:
* Config 'secret_key' success and failure are now tested.
* 'secret_key' validation was moved to pre-launch from 'Config:from()'.
* 'Config::from()' only extracts the config.
* Added 'Config::try_from()' for non-panicking extraction.
* 'Config' now knows the profile it was extracted from.
* The 'Config' provider sets a profile of 'Config.profile'.
* 'Rocket', 'Client', 'Fairings', implement 'Debug'.
* 'fairing::Info' implements 'Copy', 'Clone'.
* 'Fairings' keeps track of, logs attach fairings.
* 'Rocket::reconfigure()' was added to allow modifying a config.
Internally, the testing script was refactored to properly test the
codebase with the new changes. In particular, it no longer sets a rustc
'cfg' to avoid secret-key checking.
Resolves #1543.
Fixes #1564.
2021-03-09 08:07:43 +00:00
|
|
|
log::set_max_level(config.log_level.to_level_filter());
|
2020-09-03 05:41:31 +00:00
|
|
|
true
|
2018-01-29 21:16:04 +00:00
|
|
|
}
|
|
|
|
|
2020-09-03 05:41:31 +00:00
|
|
|
pub trait PaintExt {
|
2020-04-14 12:28:36 +00:00
|
|
|
fn emoji(item: &str) -> Paint<&str>;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PaintExt for Paint<&str> {
|
|
|
|
/// Paint::masked(), but hidden on Windows due to broken output. See #1122.
|
2020-09-03 05:41:31 +00:00
|
|
|
fn emoji(_item: &str) -> Paint<&str> {
|
|
|
|
#[cfg(windows)] { Paint::masked("") }
|
|
|
|
#[cfg(not(windows))] { Paint::masked(_item) }
|
2020-04-14 12:28:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-20 04:14:30 +00:00
|
|
|
// Expose logging macros as (hidden) funcions for use by core/contrib codegen.
|
|
|
|
macro_rules! external_log_function {
|
|
|
|
($fn_name:ident: $macro_name:ident) => (
|
|
|
|
#[doc(hidden)] #[inline(always)]
|
UTF-8 routes. Forms revamp. Temp files. Capped.
So. Many. Changes.
This is an insane commit: simultaneously one of the best (because of all
the wonderful improvements!) and one of the worst (because it is just
massive) in the project's history.
Routing:
* All UTF-8 characters are accepted everywhere in route paths. (#998)
* `path` is now `uri` in `route` attribute: `#[route(GET, path = "..")]`
becomes `#[route(GET, uri = "..")]`.
Forms Revamp
* All form related types now reside in a new `form` module.
* Multipart forms are supported. (resolves #106)
* Collections are supported in forms and queries. (resolves #205)
* Nested structures in forms and queries are supported. (resolves #313)
* Form fields can be ad-hoc validated with `#[field(validate = expr)]`.
* `FromFormValue` is now `FromFormField`, blanket implements `FromForm`.
* Form field values are always percent-decoded apriori.
Temporary Files
* A new `TempFile` data and form guard allows streaming data directly to a
file which can then be persisted.
* A new `temp_dir` config parameter specifies where to store `TempFile`.
* The limits `file` and `file/$ext`, where `$ext` is the file extension,
determines the data limit for a `TempFile`.
Capped
* A new `Capped` type is used to indicate when data has been truncated due to
incoming data limits. It allows checking whether data is complete or
truncated.
* `DataStream` methods return `Capped` types.
* `DataStream` API has been revamped to account for `Capped` types.
* Several `Capped<T>` types implement `FromData`, `FromForm`.
* HTTP 413 (Payload Too Large) errors are now returned when data limits are
exceeded. (resolves #972)
Hierarchical Limits
* Data limits are now hierarchical, delimited with `/`. A limit of `a/b/c`
falls back to `a/b` then `a`.
Core
* `&RawStr` no longer implements `FromParam`.
* `&str` implements `FromParam`, `FromData`, `FromForm`.
* `FromTransformedData` was removed.
* `FromData` gained a lifetime for use with request-local data.
* The default error HTML is more compact.
* `&Config` is a request guard.
* The `DataStream` interface was entirely revamped.
* `State` is only exported via `rocket::State`.
* A `request::local_cache!()` macro was added for storing values in
request-local cache without consideration for type uniqueness by using a
locally generated anonymous type.
* `Request::get_param()` is now `Request::param()`.
* `Request::get_segments()` is now `Request::segments()`, takes a range.
* `Request::get_query_value()` is now `Request::query_value()`, can parse any
`FromForm` including sequences.
* `std::io::Error` implements `Responder` like `Debug<std::io::Error>`.
* `(Status, R)` where `R: Responder` implements `Responder` by overriding the
`Status` of `R`.
* The name of a route is printed first during route matching.
* `FlashMessage` now only has one lifetime generic.
HTTP
* `RawStr` implements `serde::{Serialize, Deserialize}`.
* `RawStr` implements _many_ more methods, in particular, those related to the
`Pattern` API.
* `RawStr::from_str()` is now `RawStr::new()`.
* `RawStr::url_decode()` and `RawStr::url_decode_lossy()` only allocate as
necessary, return `Cow`.
* `Status` implements `Default` with `Status::Ok`.
* `Status` implements `PartialEq`, `Eq`, `Hash`, `PartialOrd`, `Ord`.
* Authority and origin part of `Absolute` can be modified with new
`Absolute::{with,set}_authority()`, `Absolute::{with,set}_origin()` methods.
* `Origin::segments()` was removed in favor of methods split into query and
path parts and into raw and decoded versions.
* The `Segments` iterator is smarter, returns decoded `&str` items.
* `Segments::into_path_buf()` is now `Segments::to_path_buf()`.
* A new `QuerySegments` is the analogous query segment iterator.
* Once set, `expires` on private cookies is not overwritten. (resolves #1506)
* `Origin::path()` and `Origin::query()` return `&RawStr`, not `&str`.
Codegen
* Preserve more spans in `uri!` macro.
* Preserve spans `FromForm` field types.
* All dynamic parameters in a query string must typecheck as `FromForm`.
* `FromFormValue` derive removed; `FromFormField` added.
* The `form` `FromForm` and `FromFormField` field attribute is now named
`field`. `#[form(field = ..)]` is now `#[field(name = ..)]`.
Contrib
* `Json` implements `FromForm`.
* `MsgPack` implements `FromForm`.
* The `json!` macro is exported as `rocket_contrib::json::json!`.
* Added clarifying docs to `StaticFiles`.
Examples
* `form_validation` and `form_kitchen_sink` removed in favor of `forms`.
* The `hello_world` example uses unicode in paths.
* The `json` example only allocates as necessary.
Internal
* Codegen uses new `exports` module with the following conventions:
- Locals starts with `__` and are lowercased.
- Rocket modules start with `_` and are lowercased.
- `std` types start with `_` and are titlecased.
- Rocket types are titlecased.
* A `header` module was added to `http`, contains header types.
* `SAFETY` is used as doc-string keyword for `unsafe` related comments.
* The `Uri` parser no longer recognizes Rocket route URIs.
2020-10-30 03:50:06 +00:00
|
|
|
pub fn $fn_name<T: std::fmt::Display>(msg: T) { $macro_name!("{}", msg); }
|
2018-09-20 04:14:30 +00:00
|
|
|
)
|
2018-07-21 22:11:08 +00:00
|
|
|
}
|
2018-09-20 04:14:30 +00:00
|
|
|
|
2018-11-12 21:08:39 +00:00
|
|
|
external_log_function!(error: error);
|
|
|
|
external_log_function!(error_: error_);
|
|
|
|
external_log_function!(warn: warn);
|
|
|
|
external_log_function!(warn_: warn_);
|