2015-04-26 11:41:25 -03:00
|
|
|
'use strict';
|
|
|
|
|
angular.module('copayApp.services')
|
2016-09-21 11:28:31 -03:00
|
|
|
.factory('logHeader', function($window, $log, platformInfo) {
|
|
|
|
|
$log.info($window.appConfig.nameCase + ' v' + window.version + ' #' + window.commitHash);
|
2016-05-31 14:55:08 -03:00
|
|
|
$log.info('Client: '+ JSON.stringify(platformInfo) );
|
2015-04-26 11:41:25 -03:00
|
|
|
return {};
|
|
|
|
|
});
|