log
Here are 1,967 public repositories matching this topic...
I learned this by digging through the code base for a while, and uncovered:
From which I deduce that in the same directory where I might have a config/config.ini.php
file, I can also have a config/blog.example.org.config.ini.php
file - which, if it exists will be used instead.
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
It probably wasn't designed for mobile usage but it does work... Kind of. It works but you can only traverse the history by tapping on either edge side of the top bar.
Using Firefox mobile
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
May 23, 2020 - Swift
Hi, I'm updating a legacy codebase L5.1 -> L7 that has this package installed. I had to rework the oAuth package from some legacy to laravel-passport.
Now I'm having an issue with Passport not having the right UserProvider
that the normalizeCauser
method is using.
The method is [getting the provider](https://github.com/spatie/laravel-activitylog/b
-
Updated
Sep 7, 2018 - Go
Version
Reproduction link
https://jsfiddle.net/boilerplate/vue
Steps to reproduce
Hello.
I have installed consola in my project and when I click on a nuxt-link who must display a log via Middleware I have an error : consola.info is not a function
If I refresh the page with my brows
Your documentation mentions that the syntax follows markdown styling, but that doesn't match what I found here: [(https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet)]
Do you think there would be any benefit in getting these two to match?
Best,
Rick
it might be a good idea to keep the standard git-log bahavior and just pass arguments to git log instead of limiting the functionality and setting non-standard default values like it's done for -d and -a.
I can see the need for --abbrev-commit
and --pretty=format:'${GIT_FORMAT}'
but otherwise it would be nice to make it behave like git-log does with its
`git log [] [<revision ra
Bug Report
The [STREAM_TASK]
configuration block was documented for v1.3, but I'm unable to find documentation for this in the v1.4 docs.
We need to look into this and possibly file a bug as the event's end point isn't returning a sample json model for events.
-
Updated
Apr 23, 2020 - TypeScript
The User Guide at https://ucbrise.github.io/confluo/ could use a full Python version. At this time it's completely unclear how to use Confluo from Python.
-
Updated
Apr 7, 2020 - C
Now the software is very cool made, very often it helps and is used by me. The only thing in private messages opposite the correspondence is to show the date of the last message. And the latest correspondence so that you are always at the top.
I would also like to add the function of collecting links to user avatars (https://cdn.discordapp.com/avatars/158283238161383424/4f929df340856c411d68955f
Improve this page
Add a description, image, and links to the log topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the log topic, visit your repo's landing page and select "manage topics."
According do android documentation onTermiante callback is invoked only emulated environments.
https://developer.android.com/reference/android/app/Application.html#onTerminate()
Invoking
Log.appenderClose();
on oTerminate() will have no effect since onTerminate is not invoked.