{"id":37016999,"url":"https://github.com/dln/loglady","last_synced_at":"2026-01-14T01:56:44.147Z","repository":{"id":2244907,"uuid":"3199529","full_name":"dln/loglady","owner":"dln","description":"Crazy Simple Logging for Scala","archived":false,"fork":false,"pushed_at":"2015-07-29T00:57:52.000Z","size":422,"stargazers_count":23,"open_issues_count":3,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-12-15T09:50:24.477Z","etag":null,"topics":["logging","scala"],"latest_commit_sha":null,"homepage":"","language":"Scala","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dln.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-01-17T13:34:06.000Z","updated_at":"2020-12-10T23:48:23.000Z","dependencies_parsed_at":"2022-08-27T05:12:47.957Z","dependency_job_id":null,"html_url":"https://github.com/dln/loglady","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/dln/loglady","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dln%2Floglady","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dln%2Floglady/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dln%2Floglady/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dln%2Floglady/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dln","download_url":"https://codeload.github.com/dln/loglady/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dln%2Floglady/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28408692,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T00:40:43.272Z","status":"ssl_error","status_checked_at":"2026-01-14T00:40:42.636Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["logging","scala"],"created_at":"2026-01-14T01:56:43.503Z","updated_at":"2026-01-14T01:56:44.139Z","avatar_url":"https://github.com/dln.png","language":"Scala","funding_links":[],"categories":[],"sub_categories":[],"readme":"loglady - Crazy Simple Logging in Scala\n=======================================\n\u003e \"My log has something to tell you. Can you hear it?\"\n\n\u003cimg src=\"http://i.imgur.com/jPZF7.jpg\" style=\"float:right\" /\u003e\n\nloglady is a thin wrapper around [slf4j](http://slf4j.org/), providing a\nsimple API similar to [Python's logging module](http://docs.python.org/library/logging.html).\n\nUsing slf4j, you're free to choose whatever logging implementation suits your\napplication or taste, but [Logback](http://logback.qos.ch/) seems like a good\ndefault.\n\nThe goal of the project is to be very simple, while adding as little overhead \nas possible.\n\nInfluences include [logula](http://github.com/codahale/logula) and\n[slf4s](http://github.com/weiglewilczek/slf4s).\n\n\n\nMain Features\n-------------\n * Thin slf4j wrapper \n * Simple API\n * No configuration\n * Supports Scala 2.9.1, 2.9.2 and 2.10.0\n\n\nUsage Example\n-------------\n```scala\nimport org.eintr.loglady.Logging\n\nclass MyClass extends Logging {\n  log.info(\"Hello, Log Lady\")\n\n  log.warn(\"We all float (%.4f) down here\", 3.141592)\n  \n  log.debug(\"Some random stuff: %d %s %x\", 42, List(0, 1, 1, 2, 3, 5), -559038737)\n  \n  log.error(\"Formatted date: %1$tm %1$te,%1$tY\", new java.util.Date)\n\n  try {\n    throw new Exception(\"Oops!\")\n  } catch {\n    case exc: Exception =\u003e {\n      log.error(exc, \"Something bad happened\")\n    }\n  }\n}\n```\n\nTo get logging output, you also need a concrete logging library with slf4j.\nSimply adding `logback-classic` as a dependency to your project is a simple\nway. See the [logback website](http://logback.qos.ch/) for more information.\n\n\nGetting loglady\n---------------\nloglady is published to the [Maven Central](http://search.maven.org/)\nrepository, requiring minimal configuration using either sbt or maven:\n\n### sbt\n```scala\nlibraryDependencies += \"org.eintr.loglady\" %% \"loglady\" % \"1.1.0\"\n```\n\n### Maven\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003eorg.eintr.loglady\u003c/groupId\u003e\n  \u003cartifactId\u003eloglady_2.10.0\u003c/artifactId\u003e\n  \u003cversion\u003e1.1.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nNote: Replace the scala version to match that of your project.\n\n\nAPI Documentation\n-----------------\nGenerated API docs (scaladoc) can be found at:\n\nhttp://dln.github.com/loglady/api/\n\n\nBug Reports and Contributions\n-----------------------------\nPlease submit bug reports and feature requests using the Github issue tracker:\n\nhttp://github.com/dln/loglady/issues\n\nPatches and suggestions for improvements are very welcome.\n\n\nCopyright\n---------\n\nCopyright (c) 2013 Daniel Lundin\n\nThis software is licensed under the Apache License, Version 2.0. \nPlease see LICENSE for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdln%2Floglady","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdln%2Floglady","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdln%2Floglady/lists"}