Minor typo in logger module

This commit is contained in:
Jesús González 2019-03-27 01:02:12 +01:00
parent 9a752a0753
commit 6f17757c79

View File

@ -116,7 +116,7 @@ export function log(location, message, level) {
wazuhlogger.log({
date: new Date(),
level: level || 'error',
location: location || 'unknown',
location: location || 'Unknown origin',
message: message || 'An error occurred'
});
}