From 916eabfa420d70fa8e91a3f716ace70006c06f0d Mon Sep 17 00:00:00 2001 From: Maxime Van Hees Date: Mon, 12 May 2025 11:17:15 +0200 Subject: [PATCH] clean up --- examples/zinit/zinit_basic.rhai | 9 --------- 1 file changed, 9 deletions(-) diff --git a/examples/zinit/zinit_basic.rhai b/examples/zinit/zinit_basic.rhai index 83e67b0..b89b862 100644 --- a/examples/zinit/zinit_basic.rhai +++ b/examples/zinit/zinit_basic.rhai @@ -63,15 +63,6 @@ try { for log in logs { print(log); } - - // Or to get all logs (uncomment if needed) - // print("\nGetting all logs:"); - // let all_logs = zinit_logs_all(socket_path); - // - // for log in all_logs { - // print(log); - // } - // Clean up print("\nCleaning up:"); let stop_result = zinit_stop(socket_path, new_service);