Skip to content

Commit

Permalink
tidied up
Browse files Browse the repository at this point in the history
  • Loading branch information
linkrope committed Jul 27, 2014
1 parent 5af72cb commit 764bf18
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
std.log
=======

Reanimated to compile with version D 2.064.2.
Reanimated to compile with version D 2.064.2 and D 2.065.0.

dmd src/example.d src/std/log.d
./example --logtostderr --minloglevel=info --stderrthreshold=info
4 changes: 2 additions & 2 deletions src/example.d
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ void main(string[] args)
{
info.when(every(9))("Every nine");

if(info.willLog)
if (info.willLog)
{
auto message = "Cool message";
// perform some complex operation
Expand All @@ -26,7 +26,7 @@ void main(string[] args)
}

try critical("Critical message");
catch(CriticalException e)
catch (CriticalException e)
{
// shutdown application...
}
Expand Down
4 changes: 2 additions & 2 deletions src/std/log.d
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ final class NoopLogFilter

/++
Defines the severity levels supported by the logging library. Should be used
in conjuntion with the log template. See $(LREF log) for an explanation of
in conjunction with the log template. See $(LREF log) for an explanation of
their semantic.
+/

Expand Down Expand Up @@ -1210,7 +1210,7 @@ void main(string[] args)
private int[] _moduleLevels;
private string _vmodule;

// backend logger variables
// back-end logger variables
private shared Logger _logger;

private ReadWriteMutex _rwmutex;
Expand Down

0 comments on commit 764bf18

Please sign in to comment.