@osovitny/anatoly 3.19.35 → 3.19.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -404,7 +404,7 @@ class AppContextService extends ApiServiceBase {
|
|
|
404
404
|
return;
|
|
405
405
|
}
|
|
406
406
|
//Logging
|
|
407
|
-
let stopwatch = new Stopwatch("AppContextService: Requesting a new AppContext");
|
|
407
|
+
let stopwatch = new Stopwatch("@osovitny/anatoly. AppContextService: Requesting a new AppContext");
|
|
408
408
|
stopwatch.start();
|
|
409
409
|
this.subscription = this.get('getCurrentContext', null).subscribe({
|
|
410
410
|
next: (data) => {
|
|
@@ -474,7 +474,7 @@ class AppContextService extends ApiServiceBase {
|
|
|
474
474
|
}));
|
|
475
475
|
let tasks$ = merge(countries$, languages$, timezones$, usStates$);
|
|
476
476
|
//Logging
|
|
477
|
-
let stopwatch = new Stopwatch("AppContextService: standard json files loaded");
|
|
477
|
+
let stopwatch = new Stopwatch("@osovitny/anatoly. AppContextService: standard json files loaded");
|
|
478
478
|
stopwatch.start();
|
|
479
479
|
return tasks$.pipe(map(() => {
|
|
480
480
|
this.fireJsonFilesLoaded();
|
|
@@ -2745,14 +2745,12 @@ class StarterService extends ApiServiceBase {
|
|
|
2745
2745
|
let context = this.appContext.current;
|
|
2746
2746
|
if (!is.objectNullOrEmpty(context)) {
|
|
2747
2747
|
//Logging
|
|
2748
|
-
this.logger.info('StarterService
|
|
2748
|
+
this.logger.info('@osovitny/anatoly. StarterService: getting AppContext from Session Storage');
|
|
2749
2749
|
this.appContext.init(context);
|
|
2750
2750
|
return of(context);
|
|
2751
2751
|
}
|
|
2752
2752
|
//Logging
|
|
2753
|
-
|
|
2754
|
-
//Logging
|
|
2755
|
-
let stopwatch = new Stopwatch("StarterService.applicationStarting: getting AppContext");
|
|
2753
|
+
let stopwatch = new Stopwatch("@osovitny/anatoly. StarterService: getting AppContext from API");
|
|
2756
2754
|
stopwatch.start();
|
|
2757
2755
|
this.baseUrl = `${ApiUrl}/appContext`;
|
|
2758
2756
|
return this.get('applicationStarting').pipe(map(data => {
|
|
@@ -2795,7 +2793,7 @@ class StarterService extends ApiServiceBase {
|
|
|
2795
2793
|
tasks$ = applicationStarting$;
|
|
2796
2794
|
}
|
|
2797
2795
|
//Logging
|
|
2798
|
-
let stopwatch = new Stopwatch("StarterService: ensureApplicationStarted");
|
|
2796
|
+
let stopwatch = new Stopwatch("@osovitny/anatoly. StarterService: ensureApplicationStarted");
|
|
2799
2797
|
stopwatch.start();
|
|
2800
2798
|
return tasks$.pipe(map(() => {
|
|
2801
2799
|
//Logging
|