package
0.1.5
Repository: https://github.com/d3ext/maldev.git
Documentation: pkg.go.dev

# README

Logging Examples

Status logging functions

package main

import (
  "fmt"

  "github.com/D3Ext/maldev/src/logging"
)

func main(){
  test = "Example text!"

  logging.Success(test)
  logging.Error(test)
  logging.Info(test)
  logging.Warning(test)
  logging.Debug(test)
}

Use colors

package main

import (
  "fmt"

  "github.com/D3Ext/maldev/src/logging"
)

func main(){
  test = "Example text!"

  logging.Green(test)
  logging.Red(test)
  logging.Purple(test)
  logging.Blue(test)
  logging.Cyan(test)

  green_text := logging.SGreen(test)
  red_text := logging.SRed(test)
  purple_text := logging.SPurple(test)
  blue_text := logging.SBlue(test)
  cyan_text := logging.SCyan(test)

  fmt.Println(green_text)
  fmt.Println(red_text)
  fmt.Println(purple_text)
  fmt.Println(blue_text)
  fmt.Println(cyan_text)
}

Create banners

package main

import (
  "fmt"

  "github.com/D3Ext/maldev/src/logging"
)

func main(){
  logging.PrintBanner("Maldev")

  fmt.Println("==================")

  ascii := logging.GetBanner("Maldev")
  fmt.Println(ascii)
}

# Functions

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Function to get current time.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Simple logging functinos with current time and status.
No description provided by the author