update logging and changelog

Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2025-05-10 20:20:02 -04:00
parent 76e6f02cb9
commit fbaca247ef
2 changed files with 8 additions and 8 deletions
+4 -2
View File
@@ -16,8 +16,10 @@
reach out on Discord if you want to test it
- **Features**
- Prompt Enhancer: support for *img2img* workflows
where prompt enhancer will first analyze input image and then incorporate user prompt to create enhanced prompt
- FramePack: improve LoRA compatibility
in img2img prompt enhancer will first analyze input image and then incorporate user prompt to create enhanced prompt
- **FramePack**
- improve LoRA compatibility
- add metadata to video
- **UI**
- ModernUI: support for History tab
- ModernUI: support for FramePack tab
+4 -6
View File
@@ -306,12 +306,10 @@ def main():
alive = False
requests = 0
t_current = time.time()
t_timestamp = 'none'
if float(args.status) > 0 and t_current - t_server > float(args.status):
if float(args.status) > 0 and (t_current - t_server) > float(args.status):
s = instance.state.status()
if s.timestamp is None or s.timestamp != t_timestamp: # dont spam during active job
installer.log.trace(f'Server: alive={alive} requests={requests} memory={get_memory_stats()} {instance.state.status()}')
t_timestamp = s.timestamp
if (s.timestamp is None) or (s.step == 0): # dont spam during active job
installer.log.trace(f'Server: alive={alive} requests={requests} memory={get_memory_stats()} {s}')
t_server = t_current
if float(args.monitor) > 0 and t_current - t_monitor > float(args.monitor):
installer.log.trace(f'Monitor: {get_memory_stats(detailed=True)}')
@@ -325,7 +323,7 @@ def main():
else:
installer.log.info('Exiting...')
break
time.sleep(1)
time.sleep(1.0)
if __name__ == "__main__":