Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to angularjs write log to file?

I have a question? In Angularjs project, what log I can use to write to file? $log of Angular or log4javascript. I have code config for $log of Angularjs:

$log.getInstance = function (context) {
        return {
            log: enhanceLogging($log.log, context),
            info: enhanceLogging($log.info, context),
            warn: enhanceLogging($log.warn, context),
            debug: enhanceLogging($log.debug, context),
            error: enhanceLogging($log.error, context)
        };
    };

    function enhanceLogging(loggingFunc, context) {
        return function () {
            var modifiedArguments = [].slice.call(arguments);
            modifiedArguments[0] = [moment().format("dddd h:mm:ss a") + '::[' + context + ']: '] + modifiedArguments[0];
            loggingFunc.apply(null, modifiedArguments);
        };
    }

It's working but it only write to console and now I want log output to file?

like image 525
phuchoangmai Avatar asked Oct 31 '22 04:10

phuchoangmai


1 Answers

Clientside Javascript does not have access to files on disk. So it is impossible to write to a logfile.

However you could use something like Sentry to log your messages.

like image 61
Christiaan Avatar answered Nov 12 '22 13:11

Christiaan