some logs

This commit is contained in:
Ben 2025-06-03 14:59:10 +02:00
parent bf21705ead
commit f6938eb12d
No known key found for this signature in database
GPG Key ID: 0F16E812E736C24B
4 changed files with 5 additions and 0 deletions

View File

@ -102,11 +102,13 @@ namespace AutoClient
public void Start()
{
app.Log.Log("LoadBalancer starting...");
foreach (var i in instances) i.Start();
}
public void Stop()
{
app.Log.Log("LoadBalancer stopping...");
foreach (var i in instances) i.Stop();
}

View File

@ -54,6 +54,7 @@ namespace AutoClient.Modes.FolderStore
return;
}
Log("Checking balances...");
foreach (var address in addresses)
{
try

View File

@ -29,6 +29,7 @@ namespace AutoClient.Modes.FolderStore
public void Run()
{
app.Log.Log("Running FolderSaver...");
saveFolderJsonCounter = 0;
var folderFiles = Directory.GetFiles(app.Config.FolderToStore);

View File

@ -88,6 +88,7 @@ public class Program
var node = codexNodeFactory.CreateCodexNode(instance);
node.SetLogLevel(LogLevel);
app.Log.Log($"Set up codex endpoint: {numberStr}");
return new CodexWrapper(app, node);
}