Remove console log

This commit is contained in:
NyxiumYuuki 2021-05-29 14:41:07 +02:00
parent a7e17137f4
commit 258474edb7
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@ export class MessageService {
constructor(private http: HttpClient) { }
sendMessage(url: string, data: any): Observable<JSdata> {
const CreatURL = environment.urlCL.concat('/').concat(url);
console.log(CreatURL, data);
//console.log(CreatURL, data);
return this.http.post<JSdata>(
CreatURL,
data,