Skip to content

Commit

Permalink
remove old code
Browse files Browse the repository at this point in the history
  • Loading branch information
jolevesq committed Nov 14, 2024
1 parent 164060a commit 1f3e0b7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 244 deletions.

This file was deleted.

2 changes: 1 addition & 1 deletion packages/geoview-core/src/core/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export * from './crosshair/crosshair-icon';
export * from './crosshair/crosshair';
export * from './data-table/export-button';
export * from './data-table/filter-map';
export * from './data-table/json-export-button-ori';
export * from './data-table/json-export-button';
export * from './data-table/data-table';
export * from './data-table/data-panel';
export * from './details/details-panel';
Expand Down
6 changes: 3 additions & 3 deletions packages/geoview-core/src/core/workers/abstract-worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ export abstract class AbstractWorker<T> {
* @private
*/
#setupLogging(): void {
// Configures logging settings for the worker process
// Ensures worker-specific log entries can be properly tracked and identified - event.data.type === 'log'
// Establishes logging context for debugging and monitoring worker operations
this.worker.onmessage = (event) => {
// Configures logging settings for the worker process
// Ensures worker-specific log entries can be properly tracked and identified
// Establishes logging context for debugging and monitoring worker operations
if (event.data && event.data.type === 'log') {
const { level, message } = event.data;
switch (level as WorkerLogLevel) {
Expand Down

0 comments on commit 1f3e0b7

Please sign in to comment.