🔥 Remove console.log() statement

This commit is contained in:
ajnart
2022-07-22 16:21:15 +02:00
parent 4628d1d1d7
commit a4defd330c

View File

@@ -85,7 +85,6 @@ export type ServiceType =
| 'Transmission'; | 'Transmission';
export function tryMatchPort(name: string, form?: any) { export function tryMatchPort(name: string, form?: any) {
console.log('tryMatchPort', name);
// Match name with portmap key // Match name with portmap key
const port = portmap.find((p) => p.name === name.toLowerCase()); const port = portmap.find((p) => p.name === name.toLowerCase());
if (form && port) { if (form && port) {