Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
QuasselDroid-ng
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Janne Mareike Koschinski
QuasselDroid-ng
Commits
1fc86078
Commit
1fc86078
authored
7 years ago
by
Janne Mareike Koschinski
Browse files
Options
Downloads
Patches
Plain Diff
Added default for logging handlers
parent
e603b010
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/src/main/java/de/kuschku/libquassel/util/compatibility/LoggingHandler.kt
+3
-1
3 additions, 1 deletion
...e/kuschku/libquassel/util/compatibility/LoggingHandler.kt
with
3 additions
and
1 deletion
lib/src/main/java/de/kuschku/libquassel/util/compatibility/LoggingHandler.kt
+
3
−
1
View file @
1fc86078
package
de.kuschku.libquassel.util.compatibility
package
de.kuschku.libquassel.util.compatibility
import
de.kuschku.libquassel.util.compatibility.reference.JavaLoggingHandler
abstract
class
LoggingHandler
{
abstract
class
LoggingHandler
{
abstract
fun
log
(
logLevel
:
LogLevel
,
tag
:
String
,
message
:
String
?
=
null
,
abstract
fun
log
(
logLevel
:
LogLevel
,
tag
:
String
,
message
:
String
?
=
null
,
throwable
:
Throwable
?
=
null
)
throwable
:
Throwable
?
=
null
)
...
@@ -29,7 +31,7 @@ abstract class LoggingHandler {
...
@@ -29,7 +31,7 @@ abstract class LoggingHandler {
}
}
companion
object
{
companion
object
{
val
loggingHandlers
:
MutableSet
<
LoggingHandler
>
=
mutableSetOf
()
val
loggingHandlers
:
MutableSet
<
LoggingHandler
>
=
mutableSetOf
(
JavaLoggingHandler
)
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment