Skip to content

Commit aa3a3d3

Browse files
Merge pull request #7 from Minecraftian14/multithreadding
Added HTMLDecoration and LateLog
2 parents 0d61713 + 3d98fb3 commit aa3a3d3

File tree

85 files changed

+1279
-661
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+1279
-661
lines changed

.gradle/checksums/checksums.lock

0 Bytes
Binary file not shown.
150 Bytes
Binary file not shown.
756 Bytes
Binary file not shown.

.idea/compiler.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/discord.xml

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/markdown.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
# MyLOGGER
1+
# MyLOGGER
22

3-
![Collage](images/collage.png)
3+
![Collage](src/docs/resources/images/collage.png)
44

55
A simple _logging_ tool to make **console outputs** look prettier...
66

77
Wanna have a look around? | Try visiting these links
88
-------------------------------------------------------|---------------------------------------------------------------------------------------------------
9-
Get an intro to "writing formatting codes" at | [![](https://img.shields.io/badge/Logger-Instructions-yellow)](WRITING_A_FORMAT_FOR_DECORATION.md)
10-
Other important stuff regarding the usage of this tool | [![](https://img.shields.io/badge/Logger-Stuff-cyan)](OTHER_IMPORTANT_THINGS.md)
11-
Get simple and complicated examples for better insight | [![](https://img.shields.io/badge/Logger-Examples-orange)](LOGGER_EXAMPLES.md)
12-
You know, you can also create Tables with this tool! | [![](https://img.shields.io/badge/Tables-Examples-green)](TABLE_EXAMPLES.md)
13-
And well, we have simple plotting tools too | [![](https://img.shields.io/badge/Plotting-Examples-red)](PLOTTING.md)
14-
For console specific compatibility | [![](https://img.shields.io/badge/Console-Compatibility-purple)](SUPPORT.md)
9+
Get an intro to "writing formatting codes" at | [![](https://img.shields.io/badge/Logger-Instructions-yellow)](src/main/md/WRITING_A_FORMAT_FOR_DECORATION.md)
10+
Other important stuff regarding the usage of this tool | [![](https://img.shields.io/badge/Logger-Stuff-cyan)](src/main/md/OTHER_IMPORTANT_THINGS.md)
11+
Get simple and complicated examples for better insight | [![](https://img.shields.io/badge/Logger-Examples-orange)](src/main/md/LOGGER_EXAMPLES.md)
12+
You know, you can also create Tables with this tool! | [![](https://img.shields.io/badge/Tables-Examples-green)](src/main/md/TABLE_EXAMPLES.md)
13+
And well, we have simple plotting tools too | [![](https://img.shields.io/badge/Plotting-Examples-red)](src/main/md/PLOTTING.md)
14+
For console specific compatibility | [![](https://img.shields.io/badge/Console-Compatibility-purple)](src/main/md/SUPPORT.md)
1515

1616
<br />
1717

@@ -45,7 +45,7 @@ dependencies {
4545

4646
#### Initialise
4747

48-
```js
48+
```groovy
4949
// Default initialisation, to print to Console.
5050
FLog logger = FLog.getNew();
5151
@@ -61,14 +61,14 @@ log.setDecorationType(Decorations.RAW); // enable raw decos, ie, no strange char
6161
6262
// creating a logger to both, print to console and write to file.
6363
FLog log = ULog.forNew()
64-
.add(FLog.getNew())
65-
.add(FileLog.getNew("new.txt"))
66-
.create();
64+
.add(FLog.getNew())
65+
.add(FileLog.getNew("new.txt"))
66+
.create();
6767
```
6868

6969
#### Usage
7070

71-
```js
71+
```groovy
7272
// Print formatted text
7373
logger.prt(arg1, arg2, arg3 ... argn);
7474

SUPPORT.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

WRITING_A_FORMAT_FOR_DECORATION.md

Lines changed: 0 additions & 111 deletions
This file was deleted.

0 commit comments

Comments
 (0)