Canonical_Formatter::get_standard_formatter()

Gets a LineFormatter whose format is our standard logging format.


Return

(TECCommonMonologFormatterLineFormatter)


Top ↑

Source

File: src/Tribe/Log/Canonical_Formatter.php

	public function get_standard_formatter() {
		if ( empty( $this->standard_formatter ) ) {
			$this->standard_formatter = new LineFormatter( $this->standard_format );
		}

		return $this->standard_formatter;
	}

Top ↑

Changelog

Changelog
Version Description
4.12.13 Introduced.