llms_get_log_path( string $handle )

Retrieve the full path to the log file for a given log handle


Parameters Parameters

$handle

(string) (Required) Log handle.


Top ↑

Return Return

(string)


Top ↑

Source Source

File: includes/functions/llms.functions.log.php

function llms_get_log_path( $handle ) {

	return trailingslashit( LLMS_LOG_DIR ) . $handle . '-' . sanitize_file_name( wp_hash( $handle ) ) . '.log';

}


Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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