Giter Site home page Giter Site logo

Comments (3)

okumin avatar okumin commented on June 19, 2024

@cookeem akka-persistence-sql-async logs information by using ActorLogging.
So you can configure the loglevel in application.conf.

Please refer to this sample.

from akka-persistence-sql-async.

cookeem avatar cookeem commented on June 19, 2024

Hi okumin, thanks for your reply, but I have already set akka.loglevel = "WARNING" or akka.loglevel = "INFO",but the log still show there. My akka version: 2.4.1, scala version: 2.11.7.

Here is my application.conf:

akka.log-dead-letters = off
akka.loglevel = "WARNING"
akka.actor {
provider = "akka.cluster.ClusterActorRefProvider"
}
akka {
remote {
log-remote-lifecycle-events = off
netty.tcp {
hostname = "localhost"
port = 0
}
}
cluster {
seed-nodes = [
"akka.tcp://cluster@localhost:2551"]
auto-down-unreachable-after = 10s
}
}
akka.persistence {
journal.plugin = "akka-persistence-sql-async.journal"
snapshot-store.plugin = "akka-persistence-sql-async.snapshot-store"
}
akka-persistence-sql-async {
journal.class = "akka.persistence.journal.sqlasync.MySQLAsyncWriteJournal"
snapshot-store.class = "akka.persistence.snapshot.sqlasync.MySQLSnapshotStore"
user = "root"
password = "password"
url = "jdbc:mysql://localhost/akka_persistence"
max-pool-size = 4
wait-queue-capacity = 10000
metadata-table-name = "test_metadata"
journal-table-name = "test_journal"
snapshot-table-name = "test_snapshot"
}

from akka-persistence-sql-async.

okumin avatar okumin commented on June 19, 2024

@cookeem I have tried that configuration, but it seems to work correctly.

akka-persistence-sql-async-sample

Debug logs appear on logging-debug project, but not on logging-warning project.
I tried on sbt console.

Could you try to reproduce the problem on akka-persistence-sql-async-sample and show me that code?

from akka-persistence-sql-async.

Related Issues (19)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.