Skip to main content

LogFormat

Struct LogFormat 

Source
pub struct LogFormat;
Expand description

ログメッセージのフォーマットユーティリティ

Implementations§

Source§

impl LogFormat

Source

pub fn method_call(class: &str, method: &str, args: &[String]) -> String

メソッド呼び出しログを生成

例: State::get('cache.user')

§Arguments
  • class - クラス名
  • method - メソッド名
  • args - 引数のスライス
Source

pub fn error(class: &str, method: &str, message: &str) -> String

エラーログを生成

例: State::get: metadata not found

§Arguments
  • class - クラス名
  • method - メソッド名
  • message - エラーメッセージ
Source

pub fn format_arg(value: &Value) -> String

引数を読みやすくフォーマット(declare-engine の formatArgs 相当)

  • 文字列: 50文字で省略
  • 配列: 要素数を表示
  • オブジェクト: フィールド数を表示
  • null/bool/数値: そのまま
Source

pub fn format_str_arg(s: &str) -> String

文字列引数をフォーマット

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.