Remove all logging from console

This commit is contained in:
2024-10-20 20:16:32 +02:00
parent d97eff9796
commit 67bed57ab6
8 changed files with 55 additions and 55 deletions

View File

@ -5,28 +5,28 @@ import { getData } from '../App';
export class MangaConnector
{
static async GetAllConnectors(): Promise<IMangaConnector[]> {
console.info("Getting all MangaConnectors");
//console.info("Getting all MangaConnectors");
return getData("http://127.0.0.1:6531/v2/Connector/Types")
.then((json) => {
console.info("Got all MangaConnectors");
//console.info("Got all MangaConnectors");
return (json as IMangaConnector[]);
});
}
static async GetMangaFromConnectorByTitle(connector: IMangaConnector, name: string): Promise<IManga[]> {
console.info(`Getting Manga ${name}`);
//console.info(`Getting Manga ${name}`);
return await getData(`http://127.0.0.1:6531/v2/Connector/${connector.name}/GetManga?title=${name}`)
.then((json) => {
console.info(`Got Manga ${name}`);
//console.info(`Got Manga ${name}`);
return (json as IManga[]);
});
}
static async GetMangaFromConnectorByUrl(connector: IMangaConnector, url: string): Promise<IManga> {
console.info(`Getting Manga ${url}`);
//console.info(`Getting Manga ${url}`);
return await getData(`http://127.0.0.1:6531/v2/Connector/${connector.name}/GetManga?url=${url}`)
.then((json) => {
console.info(`Got Manga ${url}`);
//console.info(`Got Manga ${url}`);
return (json as IManga);
});
}