Starting splash

This commit is contained in:
Gustavo Maximiliano Cortez 2016-09-21 11:28:31 -03:00
commit d6d0b75efe
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
4 changed files with 31 additions and 6 deletions

View file

@ -1,7 +1,7 @@
'use strict';
angular.module('copayApp.services')
.factory('logHeader', function($log, platformInfo) {
$log.info('Starting Copay v' + window.version + ' #' + window.commitHash);
.factory('logHeader', function($window, $log, platformInfo) {
$log.info($window.appConfig.nameCase + ' v' + window.version + ' #' + window.commitHash);
$log.info('Client: '+ JSON.stringify(platformInfo) );
return {};
});