_printDebug
This commit is contained in:
parent
f65825d8d0
commit
1ea9110a94
5 changed files with 5 additions and 4 deletions
|
@ -7,6 +7,7 @@
|
||||||
<excludeFolder url="file://$MODULE_DIR$/build" />
|
<excludeFolder url="file://$MODULE_DIR$/build" />
|
||||||
<excludeFolder url="file://$MODULE_DIR$/packages" />
|
<excludeFolder url="file://$MODULE_DIR$/packages" />
|
||||||
<excludeFolder url="file://$MODULE_DIR$/temp" />
|
<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/method/packages" />
|
||||||
<excludeFolder url="file://$MODULE_DIR$/test/packages" />
|
<excludeFolder url="file://$MODULE_DIR$/test/packages" />
|
||||||
<excludeFolder url="file://$MODULE_DIR$/test/route/packages" />
|
<excludeFolder url="file://$MODULE_DIR$/test/route/packages" />
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# angel_route
|
# 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)
|
![build status](https://travis-ci.org/angel-dart/route.svg)
|
||||||
|
|
||||||
A powerful, isomorphic routing library for Dart.
|
A powerful, isomorphic routing library for Dart.
|
||||||
|
|
|
@ -127,7 +127,7 @@ class Route {
|
||||||
}
|
}
|
||||||
|
|
||||||
void _printDebug(msg) {
|
void _printDebug(msg) {
|
||||||
if (debug) print(msg);
|
if (debug == true) print(msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
Route._base();
|
Route._base();
|
||||||
|
|
|
@ -33,7 +33,7 @@ class Router extends Extensible {
|
||||||
}
|
}
|
||||||
|
|
||||||
void _printDebug(msg) {
|
void _printDebug(msg) {
|
||||||
if (debug) print(msg);
|
if (debug == true) print(msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Adds a route that responds to the given path
|
/// Adds a route that responds to the given path
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: angel_route
|
name: angel_route
|
||||||
description: A powerful, isomorphic routing library for Dart.
|
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>
|
author: Tobe O <thosakwe@gmail.com>
|
||||||
homepage: https://github.com/angel-dart/angel_route
|
homepage: https://github.com/angel-dart/angel_route
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
|
|
Loading…
Reference in a new issue