Skip to content
This repository has been archived by the owner on Sep 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request #123 from microsoft/PostSledgehammer
Browse files Browse the repository at this point in the history
Printing error messages on attach failure
  • Loading branch information
darrenge authored Sep 16, 2024
2 parents fd39879 + 258132f commit bf9932a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AmbrosiaLib/Ambrosia/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3203,7 +3203,7 @@ private void ProcessSyncLocalMessage(ref FlexReadBuffer localServiceBuffer, Flex
if ((connectionResult1 != CRAErrorCode.Success) || (connectionResult2 != CRAErrorCode.Success) ||
(connectionResult3 != CRAErrorCode.Success) || (connectionResult4 != CRAErrorCode.Success))
{
Trace.TraceError("Error attaching " + ServiceName() + " to " + destination);
Trace.TraceError("Error attaching " + ServiceName() + " to " + destination + "\nCRAResults:"+ " " + connectionResult1.ToString() + " " + connectionResult2.ToString() + " " + connectionResult3.ToString() + " " + connectionResult4.ToString());
// BUGBUG in tests. Should exit here. Fix tests then delete above line and replace with this OnError(0, "Error attaching " + _serviceName + " to " + destination);
}
}
Expand Down

0 comments on commit bf9932a

Please sign in to comment.