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.
Return Return
(string)
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'; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |