GitXplorerGitXplorer
v

logy

public
17 stars
3 forks
0 issues

Commits

List of commits on branch master.
Unverified
4852e447398d5c0a2fdeb6d54334b4686ce1d3e8

changed default level

vvkostyukov committed 12 years ago
Unverified
4b01f43c18416f0d0fcf83c96180350594caec07

fixed bugs; preaperd for release 0.1.0

vvkostyukov committed 12 years ago
Unverified
c4811caa4f4e9079c393e5d6f9d3edfff2f5e571

improved group function

vvkostyukov committed 12 years ago
Unverified
df2a6ef09d5d81e555d3c126df477fbc90763cec

fixed bug w/ float array

vvkostyukov committed 12 years ago
Unverified
b68e497568f256fc6ce22fd036568c61058f7610

implemented parsers test; fixed bugs;

vvkostyukov committed 12 years ago
Unverified
4f65c8732dc6582eddf1d44a22fd25c05ccfa0fd

added formatter tests

vvkostyukov committed 12 years ago

README

The README file for this repository.

Logy - is a DSL-based Java logging library

Usage:

import static logy.Logy.*;

public class Test {
  public void test() {
		String a[] = {"aaaa", "bbbbb"};
		info("Can't find", quote(upper("test")), "in array", quote(array(a)));
	}
}

will print:

Can't find "TEST" in array [aaaa, bbbbb]