Skip to content

Commit

Permalink
change source set dir
Browse files Browse the repository at this point in the history
  • Loading branch information
dsvag committed Feb 11, 2024
1 parent 2e831e2 commit 64f7c9a
Show file tree
Hide file tree
Showing 27 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.SupervisorJob
import money.vivid.elmslie.core.config.ElmslieConfig

@SuppressWarnings("detekt.FunctionNaming")
@Suppress("detekt.FunctionNaming")
fun ElmScope(name: String): CoroutineScope =
CoroutineScope(
context =
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package money.vivid.elmslie.core.config

import kotlin.concurrent.Volatile
import kotlinx.coroutines.CoroutineDispatcher
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.IO
import money.vivid.elmslie.core.logger.ElmslieLogConfiguration
import money.vivid.elmslie.core.logger.ElmslieLogger
import money.vivid.elmslie.core.logger.strategy.IgnoreLog
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class ElmslieLogConfiguration {

/** Apply the same logging strategy to all log levels */
fun always(strategy: LogStrategy) = apply {
LogSeverity.values().forEach { strategies[it] = strategy }
LogSeverity.entries.forEach { strategies[it] = strategy }
}

internal fun build() = ElmslieLogger(strategies)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package money.vivid.elmslie.core.store.dsl

import money.vivid.elmslie.core.store.Result
import money.vivid.elmslie.core.store.StateReducer
import kotlin.reflect.KClass

Expand Down

0 comments on commit 64f7c9a

Please sign in to comment.