Skip to content

Conversation

Ev3nt
Copy link
Contributor

@Ev3nt Ev3nt commented Sep 22, 2025

As I see, there is a problem with fbsvcmgr again (#8431 (comment)), so I offer my solution. It is that ALICE_print calls tdgbl->uSvc->started(), which immediately after the output of information releases the stream, which does not allow further output of information.

if (any_error)
{
ALICE_print(24); // msg 24: Summary of validation errors\n
ALICE_print(24, SafeArg(), false); // msg 24: Summary of validation errors\n
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Given that we know the service has been already started, I'd consider to do:

if (tdgbl->uSvc->isService())
			tdgbl->uSvc->started();

explicitly before this ALICE_print() call instead of hacking ALICE_print() itself for this particular case.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants