twitch logging platform
Find a file
2020-03-02 21:29:49 +01:00
api finish refactoring 2020-03-01 14:53:53 +01:00
archiver double check if we actually try to open a dir 2019-08-18 11:08:27 +02:00
bot option to only log specific types of messages 2020-03-02 21:29:49 +01:00
filelog refactoring 2020-02-25 12:36:10 +01:00
helix use a helix client for helix 2020-03-02 20:33:58 +01:00
humanize add tests for humanize 2019-08-18 11:38:54 +02:00
web finish refactoring 2020-03-01 14:53:53 +01:00
.gitignore remove config.json from git 2018-12-02 19:48:42 +01:00
.travis.yml remove 1.09 go support 2019-07-13 13:25:11 +02:00
config.json.dist option to only log specific types of messages 2020-03-02 21:29:49 +01:00
Dockerfile new cmd 2019-05-17 21:54:38 +02:00
go.mod use a helix client for helix 2020-03-02 20:33:58 +01:00
go.sum use a helix client for helix 2020-03-02 20:33:58 +01:00
LICENSE use json config and enable arguments 2018-11-29 22:20:57 +01:00
main.go option to only log specific types of messages 2020-03-02 21:29:49 +01:00
Makefile finish refactoring 2020-03-01 14:53:53 +01:00
README.MD option to only log specific types of messages 2020-03-02 21:29:49 +01:00

justlog Build Status

What is this?

justlog is a bot I maintain for a couple of channels. Its features differ from other bots in that it doesn't support commands, etc. yet, it focuses on logging and providing an api for the logs.

Config

{
    "admin": "gempir", // will only respond to this user with !status
    "logsDirectory": "./logs", // the directory to log into
    "username": "gempbot", // bot username (can be justinfan123123 if you don't want to use an account)
    "oauth": "oauthtokenforchat", // bot token can be anything if justinfan123123
    "clientID": "mytwitchclientid", // your client ID, needed for fetching userids or usernames etc
    "logLevel": "debug", // the log level, keep this to info probably
    "channels": ["77829817", "11148817"], // the channels you want to log
    "channelConfigs": { // channel specific settings
        "77829817": { // only applies to this channel
            "messageTypes": [1] // will only log messages of type 1 (check go-twitch-irc MessageType https://github.com/gempir/go-twitch-irc/blob/master/message.go#L17), default is all 
        }
    }
}