logger
Here are 2,304 public repositories matching this topic...
Please visit the contributing guidelines to learn more on how to translate Signale's documentation into more languages.
Tons of thank you to everyone for your help and support!
-
Updated
Apr 18, 2020 - JavaScript
I like the language about legacy versions and how they are are supported in https://github.com/googleapis/google-cloud-node#supported-nodejs-versions . I think we could adopt some form of it.
-
Updated
Jun 3, 2020 - Swift
-
Updated
Apr 22, 2020 - Java
-
Updated
Nov 12, 2018 - Swift
-
Updated
Apr 7, 2020 - C
-
Updated
May 23, 2020 - JavaScript
Conan package
The documentation generator at ./docs/generator/ could support the config struct tags introduced in trivago/gollum#143 to:
- Detect undocumented configuration parameters and include them in the documentation
- Detetect and warn about inexistent / mistyped configuration parameters found in the doc comments
Not a very urgent need, but perhaps useful when revising do
-
Updated
Jun 8, 2020 - C++
I have used this library and its not capturing Swift run time exception or traces. This is only handling Objective C exception. If you could help me out for showing Swift run time exception with stack trace.
-
Updated
May 3, 2019 - Java
-
Updated
Jun 7, 2020 - C++
-
Updated
Jan 2, 2019 - Java
-
Updated
Mar 8, 2018 - JavaScript
Currently Surface.of[X] automatically consume ClassNotFound exception and returns Surface.of[java.lang.Object] so that it will not stop user programs.
But as we hit the class loader issue like sbt/sbt#5410 and #918 this behavior makes difficult to identify what happened behind the scenes, so we should be able to report ClassNotFoundException later.
Another approac
Kotlin DSL
Description
There is no documentation describing the usage of the plugin with Kotlin DSL for Gradle
When trying a solution proposed in #127 I am getting an error:
* What went wrong:
Script compilation errors:
Line 57: testlogger {
^ Unresolved reference: testlogger
Line 58: theme = ThemeTy
-
Updated
Mar 6, 2019 - Go
Improve this page
Add a description, image, and links to the logger topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the logger topic, visit your repo's landing page and select "manage topics."
override createMessage in LoggerPrinter like this:
1:
// return args == null || args.length == 0 ? message : String.format(message, args);
if (args == null || args.length == 0) {
return message;
}
String pattern = "(%\d)?$(a|b|c|d|e|f|g|h|n|s|tx)";
Pattern p = Pattern.compile(pattern);
Matcher m = p.matcher(message);
if (m.find()) {
return String.format(message, args);
} else {
t(me