Refactor API service functions for improved error handling and code consistency
- Updated signUpApi, deleteZonesApi, getZonesApi, setZonesApi, and other API functions to enhance error logging with echo.error statements. - Reformatted function parameters for better readability. - Removed unnecessary comments and console logs. - Ensured consistent error messages across all API functions. - Improved code structure for better maintainability.
This commit is contained in:
@@ -25,6 +25,7 @@ function VehicleInstance({ agvDetail }: { agvDetail: VehicleStatus }) {
|
||||
segmentPath?.map(({ x, y, z }) => [x, 0, z] as [number, number, number]) || []
|
||||
);
|
||||
} catch {
|
||||
echo.error("Failed to compute path");
|
||||
return [];
|
||||
}
|
||||
},
|
||||
|
||||
@@ -54,7 +54,9 @@ export default function NavMeshDetails({
|
||||
const debugDrawer = new DebugDrawer();
|
||||
debugDrawer.drawNavMesh(navMesh);
|
||||
// scene.add(debugDrawer);
|
||||
} catch (error) { }
|
||||
} catch (error) {
|
||||
echo.error("Failed to initialize navigation")
|
||||
}
|
||||
};
|
||||
|
||||
initializeNavigation();
|
||||
|
||||
Reference in New Issue
Block a user