54472: Remove console.log

This commit is contained in:
Kristof De Langhe
2018-10-29 11:17:07 +01:00
parent fb65aa84f3
commit 0cf65b3f8c
2 changed files with 0 additions and 2 deletions

View File

@@ -116,7 +116,6 @@ export class AuthService {
options.headers = headers;
return this.authRequestService.postToEndpoint('login', body, options).pipe(
map((status: AuthStatus) => {
console.log('yey response');
if (status.authenticated) {
return status;
} else {

View File

@@ -42,7 +42,6 @@ export class RequestEffects {
}),
filter((entry: RequestEntry) => hasValue(entry)),
map((entry: RequestEntry) => entry.request),
tap((entry: RequestEntry) => console.log(entry)),
flatMap((request: RestRequest) => {
let body;
if (isNotEmpty(request.body)) {