2019-05-20 13:16:18 +02:00
|
|
|
# lhs_lib
|
|
|
|
|
2019-07-04 16:46:12 +02:00
|
|
|
Includes entwickelt und erweitert aus Bestehenden Sourcen um PureBasic funktionalitäten zu erweitern.
|
2019-07-04 16:45:28 +02:00
|
|
|
|
2023-03-27 16:45:08 +02:00
|
|
|
## Programming recommendations in this collection
|
|
|
|
|
|
|
|
### Debugging
|
|
|
|
It is best Case Using the "SYS/lhs_sys_debug_wrapper.pbi" and not Use Debug instead using as following:
|
|
|
|
|
|
|
|
Initial:
|
2023-03-27 16:48:02 +02:00
|
|
|
```
|
2023-03-27 16:45:08 +02:00
|
|
|
Global LoggerUUID.s = ""
|
|
|
|
Global Log_Level_Info = 0
|
|
|
|
Global Log_Level_Debug = 0
|
|
|
|
Global Log_Level_Error = 2
|
2023-03-27 16:48:02 +02:00
|
|
|
```
|
2023-03-27 16:45:08 +02:00
|
|
|
And in Code:
|
2023-03-27 16:48:02 +02:00
|
|
|
```
|
2023-03-27 16:45:08 +02:00
|
|
|
ldl::Logging("Something on Info Log", LoggerUUID, Log_Level_Info)
|
2023-03-27 16:48:02 +02:00
|
|
|
```
|
2023-03-27 16:45:08 +02:00
|
|
|
|
2019-07-04 16:45:28 +02:00
|
|
|
## Autoren
|
|
|
|
René Linder [Ground0]
|
2019-07-04 16:36:27 +02:00
|
|
|
|
2020-08-19 15:34:14 +02:00
|
|
|
## Lizenz
|
2019-07-04 16:36:27 +02:00
|
|
|
Sofern in den Sourcen nicht anders erwähnt gilt folgende Lizenz:
|
2020-08-19 15:34:14 +02:00
|
|
|
LGPL v2.1: <https://www.gnu.org/licenses/old-licenses/lgpl-2.1>.
|