Complete SCIOT-000 and SCIOT-029: Separate logics + structured logging#40
Open
lbedogni wants to merge 4 commits into
Open
Complete SCIOT-000 and SCIOT-029: Separate logics + structured logging#40lbedogni wants to merge 4 commits into
lbedogni wants to merge 4 commits into
Conversation
added 4 commits
July 2, 2026 07:20
SCIOT-000: Mark as DONE (all 8 tasks verified complete) SCIOT-029: Replace print() with structured logging - request_handler.py: 4 print calls → logger.info/warning - http_server.py: 2 print calls → logger.info/error - edge_initialization.py: 3 print calls → logger.info/debug - profiler.py: 3 print calls → logger.info/error - model_manager.py: Added Optional type hints - settings.yaml: Added logging.level and logging.format config - logger/log.py: Enhanced configure_logger_from_settings() with level support
- Added offloading_algo.ema_alpha to settings.yaml (default: 0.5) - Added validation for ema_alpha in 0.0-1.0 range in config.py - Added get_ema_alpha() helper in commons.py - Replaced hardcoded alpha values in request_handler.py and model_manager.py - Added unit tests for EMA alpha configuration validation
- Enhanced settings.yaml with detailed comments on EMA alpha values and tuning - Added tuning guide section in OFFLOADING_DECISION_EVENTS.md
- Test logger handler setup - Test configuration loading from settings.yaml - Test CustomFormatter file info and indentation support
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes
SCIOT-000 - Separate logics
SCIOT-029 - Replace print statements with structured logging
All files pass Python syntax validation.