Error_Log::add_log_to_diagnostics( $diagnostics )

Summary

No summary available.

Source

File: src/BigCommerce/Logging/Error_Log.php

	public function add_log_to_diagnostics( $diagnostics ) {
		$logs          = $this->get_log_data();
		$diagnostics[] = [
			'label' => __( 'Error Logs', 'bigcommerce' ),
			'key'   => 'errorlogs',
			'value' => [
				[
					'label' => __( 'Import Logs', 'bigcommerce' ),
					'key'   => 'importlogs',
					'value' => $logs[ 'log_content' ],
				],
			],
		];

		return $diagnostics;
	}


User Contributed Notes

You must log in before being able to contribute a note or feedback.