Popularity
9.0
Declining
Activity
2.2
Stable
35
31
8
Monthly Downloads: 23
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Latest version: v0.9.0.0
log alternatives and similar packages
Based on the "System" category.
Alternatively, view log alternatives based on common mentions on social networks and blogs.
-
nix-deploy
DISCONTINUED. Deploy software or an entire NixOS system configuration to another NixOS system -
ghc-hotswap
DISCONTINUED. Example code for how we swap compiled code within a running Haskell process. -
plugins
Dynamic linking and runtime evaluation of Haskell, and C, including dependency chasing and package resolution. -
ascii-progress
A simple Haskell progress bar for the console. Heavily borrows from TJ Holowaychuk's Node.JS project -
language-puppet
A library to work with Puppet manifests, test them and eventually replace everything ruby.
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

Do you think we are missing an alternative of log or a related project?
Popular Comparisons
README
log

A set of libraries that provide a way to record structured log messages with multiple back ends.
Supported back ends:
- Standard output
- Elasticsearch
- PostgreSQL
The log-base
library provides only the basic scaffolding and the
stdout back end. Additional back ends are provided by
log-elasticsearch
and log-postgres
.
Example
{-# LANGUAGE OverloadedStrings #-}
module Main where
import Log
import Log.Backend.ElasticSearch
main :: IO ()
main = do
let config = defaultElasticSearchConfig {
esServer = "http://localhost:9200",
esIndex = "logs",
esMapping = "log"
}
withElasticSearchLogger config $ \logger ->
runLogT "main" logger $ do
logTrace_ "foo"