|
@@ -3,6 +3,7 @@
|
|
from enum import Enum
|
|
from enum import Enum
|
|
|
|
|
|
from fastapi import APIRouter, Query
|
|
from fastapi import APIRouter, Query
|
|
|
|
+from loguru import logger
|
|
|
|
|
|
from app.controllers.equipment.fcu import get_fcu_control_result
|
|
from app.controllers.equipment.fcu import get_fcu_control_result
|
|
from app.controllers.equipment.vav import get_vav_control_result
|
|
from app.controllers.equipment.vav import get_vav_control_result
|
|
@@ -74,4 +75,5 @@ async def get_equipment_command_v2(equipment_control_info: EquipmentControlInReq
|
|
'time': get_time_str(),
|
|
'time': get_time_str(),
|
|
'output': output
|
|
'output': output
|
|
}
|
|
}
|
|
|
|
+ logger.info(response)
|
|
return response
|
|
return response
|