Wallet/src/js/services/logHeader.js

7 lines
263 B
JavaScript
Raw Normal View History

2015-04-26 11:41:25 -03:00
'use strict';
angular.module('copayApp.services')
.factory('logHeader', function($log, platformInfo) {
2015-04-26 11:41:25 -03:00
$log.info('Starting Copay v' + window.version + ' #' + window.commitHash);
$log.info('Client: '+ JSON.stringify(platformInfo) );
2015-04-26 11:41:25 -03:00
return {};
});