Move logger to separate file
This commit is contained in:
parent
80f479eca8
commit
82cd734ed7
|
@ -0,0 +1,8 @@
|
|||
namespace Bot
|
||||
|
||||
module Logging =
|
||||
|
||||
open System
|
||||
|
||||
let log message =
|
||||
printfn "[%A] [Info] %s" DateTime.Now message
|
|
@ -2,13 +2,10 @@ namespace Bot
|
|||
|
||||
module WebsiteCheckLoop =
|
||||
|
||||
open System
|
||||
open Logging
|
||||
open DSharpPlus
|
||||
open Channels
|
||||
|
||||
let private log message =
|
||||
printfn "[%A] [Info] %s" DateTime.Now message
|
||||
|
||||
let private sendToChannelWith (client:DiscordClient) message id =
|
||||
log <| sprintf "Sending message to channel: %A" id
|
||||
id
|
||||
|
|
Reference in New Issue