Console: reported errors

I am trying to understand a malfunction in a standalone and found these while my application run (and some syslog I issued):

Dec 18 13:18:22 Emile lsd[246]: LaunchServices: Could not store lsd-identifiers file at /private/var/db/lsd/com.apple.lsdschemes.plist Dec 18 13:18:23 Emile launchservicesd[80]: SecTaskLoadEntitlements failed error=22 Dec 18 13:18:23 --- last message repeated 1 time --- Dec 18 13:18:23 Emile appleeventsd[54]: SecTaskLoadEntitlements failed error=22 Dec 18 13:18:23 Emile Easy Custom[1227]: Application Easy Custom Icon Application loaded (App.Open) ! Dec 18 13:18:26 Emile Easy Custom[1227]: Run through cSticker.Paint. Dec 18 13:18:28 --- last message repeated 1 time --- Dec 18 13:18:28 Emile launchservicesd[80]: SecTaskLoadEntitlements failed error=22 Dec 18 13:18:37 --- last message repeated 2 times --- Dec 18 13:18:37 Emile Easy Custom[1227]: Run through cSticker.Paint. Dec 18 13:18:37 Emile Easy Custom[1227]: Run through cBackgroud_Color.MouseDown: a new color was selected: &h00007FFF. Dec 18 13:18:37 Emile Easy Custom[1227]: Run through cSticker.Paint. Dec 18 13:18:41 Emile launchservicesd[80]: SecTaskLoadEntitlements failed error=22

I fired the stand alone, click in a Canvas that issue a SelectColor (cBackgroud_Color), choosed a new Color value, color cSticker (in cSticker.Paint Event) and exit.
The Syslog entry above (cBackgroud_Color.MouseDown) is in an If Block: it appears only if a new color was choosed.

The cSticker Canvas is meant to be Filled with the new color (who do not do that in the Stand Alone, but do it in the IDE running the project.

The question is: what are these errors ?

Edit:
Xojo 2015r1 (same behavior in Xojo 2918r4 [not tested with Console reports]),
The listing above comes from the Console Application.
Sometimes (if not always), one learns interesting stuff in the Release Notes.
El Capitan.

There are not all errors but “messages” which can serve as information about a process. Most of them are generated by the OS itself

You can have a look here (https://apple.stackexchange.com/questions/237465/what-means-sectaskloadentlitlements-failed-error-22) for an explanation of the “SecTaskLoadEntitlements failed error=22” message, for example.

Some other messages can also be bug reminders for the macOS development team. Usually, you should just ignore them.

I read and understand, thanks Stphane.

Just for the fun, heres another entry from Xojo (Mojave running):

Dec 18 15:59:08 MacBook-Pro-de-Emile Easy Custom[694]: Running in the cSticker.Paint Event. Dec 18 15:59:31 --- last message repeated 3975 times ---

The Paint Event was fired 3975 times !

BTW: I found my way to display the correct result, but not the intermediate: half baked solution. I think I have to create a brand new window (using a test window from a project created to demonstrate how to paint a Background color in a Canvas (in the Paint Event)). :frowning: