2015-04-26 11:41:25 -03:00
|
|
|
'use strict';
|
|
|
|
|
angular.module('copayApp.services')
|
2016-12-27 15:19:53 -03:00
|
|
|
.factory('logHeader', function($window, appConfigService, $log, platformInfo) {
|
|
|
|
|
$log.info(appConfigService.nameCase + ' v' + $window.version + ' #' + $window.commitHash);
|
|
|
|
|
$log.info('Client: ' + JSON.stringify(platformInfo));
|
2015-04-26 11:41:25 -03:00
|
|
|
return {};
|
|
|
|
|
});
|