_printDebug

This commit is contained in:
thosakwe 2016-11-23 14:06:54 -05:00
parent f65825d8d0
commit 1ea9110a94
5 changed files with 5 additions and 4 deletions

View file

@ -7,6 +7,7 @@
<excludeFolder url="file://$MODULE_DIR$/build" />
<excludeFolder url="file://$MODULE_DIR$/packages" />
<excludeFolder url="file://$MODULE_DIR$/temp" />
<excludeFolder url="file://$MODULE_DIR$/test/chain/packages" />
<excludeFolder url="file://$MODULE_DIR$/test/method/packages" />
<excludeFolder url="file://$MODULE_DIR$/test/packages" />
<excludeFolder url="file://$MODULE_DIR$/test/route/packages" />

View file

@ -1,6 +1,6 @@
# angel_route
![version 1.0.0-dev+9](https://img.shields.io/badge/version-1.0.0--dev+9-red.svg)
![version 1.0.0-dev+10](https://img.shields.io/badge/version-1.0.0--dev+10-red.svg)
![build status](https://travis-ci.org/angel-dart/route.svg)
A powerful, isomorphic routing library for Dart.

View file

@ -127,7 +127,7 @@ class Route {
}
void _printDebug(msg) {
if (debug) print(msg);
if (debug == true) print(msg);
}
Route._base();

View file

@ -33,7 +33,7 @@ class Router extends Extensible {
}
void _printDebug(msg) {
if (debug) print(msg);
if (debug == true) print(msg);
}
/// Adds a route that responds to the given path

View file

@ -1,6 +1,6 @@
name: angel_route
description: A powerful, isomorphic routing library for Dart.
version: 1.0.0-dev+9
version: 1.0.0-dev+10
author: Tobe O <thosakwe@gmail.com>
homepage: https://github.com/angel-dart/angel_route
dev_dependencies: