Skip to content

Commit

Permalink
Remove some log output.
Browse files Browse the repository at this point in the history
  • Loading branch information
josephbirkner committed Nov 5, 2024
1 parent 520dc94 commit 4db885f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions erdblick_app/app/inspection.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,6 @@ export class InspectionService {
}

async loadSourceDataLayer(tileId: number, layerId: string, mapId: string) : Promise<TileSourceDataLayer> {
console.log(`Loading SourceDataLayer layerId=${layerId} tileId=${tileId}`);

const tileParser = new coreLib.TileLayerParser();
const newRequestBody = JSON.stringify({
requests: [{
Expand Down Expand Up @@ -338,7 +336,6 @@ export class InspectionService {
for (const [_, mapInfo] of this.mapService.maps.getValue().entries()) {
for (const [_, layerInfo] of mapInfo.layers.entries()) {
if (layerInfo.type == "SourceData") {
console.log(layerInfo.layerId, this.layerNameForSourceDataLayerId(layerInfo.layerId), layerName)
if (this.layerNameForSourceDataLayerId(layerInfo.layerId) == layerName ||
this.layerNameForSourceDataLayerId(layerInfo.layerId) == layerName.replace('-', '.') ||
layerInfo.layerId == layerName) {
Expand Down

0 comments on commit 4db885f

Please sign in to comment.