lua-simplelog  Check-in [215ab5c5f6]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Release new rockspec.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | trunk
Files: files | file ages | folders
SHA3-256: 215ab5c5f61263e207362e29e4fed0cc2fa8e697781d0b1264d74a8375446420
User & Date: llmII 2019-07-12 02:14:26
Context
2019-07-12 02:14
Release new rockspec. Leaf check-in: 215ab5c5f6 user: llmII tags: trunk
2019-07-12 02:05
Resolved an issue where it was opening a file every time the logger wrote. check-in: 3707605292 user: llmII tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Added rockspecs/lua-simplelog-0.1.1-1.rockspec.























































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package = 'lua-simplelog'
version = '0.1.1-1'
source = {
  url = 'https://code.amlegion.org/lua-simplelog/zip/release-0.1.1/lua-simplelog-0.1.1.zip',
  file = 'lua-simplelog-0.1.1.zip'
}
description = {
  summary = 'A simple, capable, better logger for lua.',
  detailed = [[
    lua-simplelog is a logger for lua. It's aim is to provide a
    performant, simple logger, allowing for a log directory, opening
    multiple logs through its management facilities, and splitting
    upon dates. It also supports daemonization of the process
    utilizing it.
  ]],
  license = 'OWL',
  homepage = 'https://code.amlegion.org/lua-simplelog'
}
dependencies = {
  "lua >= 5.3"
}
build = {
  type = 'builtin',
  modules = {
    simplelog = 'simplelog.lua'
  }
}