વર્ણન
Write log for debugging WordPress site.
How to Use?
Use this function to write log.
// Variable value can be string, array, or object
$variable = 'Variable value';
// Log file will be in /wp-content/plugins/samudra-log/log/sd_log.log
sd_log($variable);
// Log file will be in /wp-content/plugins/samudra-log/log/my-file.log
sd_log($variable, 'my-file');
Restrict direct access to log file
If you are using Nginx, put this code inside your server block.
location ~ /wp-content/plugins/samudra-log/log/.*\.log$ {
deny all;
return 404;
}
સ્ક્રીનશોટ
એફએક્યુ (FAQ)
-
Why not just use WP_DEBUG_LOG?
-
WP_DEBUG_LOG write file into wp-content/debug.log. In this file it also contain any error logs.
This plugin make it easy to see specific logging that we want. And adding custom logging file also easy with sd_log($var, ‘file-name’).
સમીક્ષાઓ
આ પ્લગઇન માટે કોઈ સમીક્ષાઓ નથી.
ફાળો આપનાર & ડેવલપર્સ
“Samudra Log” ને તમારી ભાષામાં અનુવાદ કરો.
વિકાસમાં રસ ધરાવો છો?
કોડ બ્રાઉઝ કરો, જોવોઅસ્વીએન રેપોઝિટરીમાંથી,અથવા સબ્સ્ક્રાઇબ કરોડેવલપમેન્ટ દ્વારાઆરઅસઅસ.
ચેન્જલૉગ
1.0.2
- Support WordPress 5.7.2.
1.0.1
- Support WordPress 5.5.1.
1.0.0
- Initial release.