Commit 9b5c689 1 parent 938b5f1 commit 9b5c689 Copy full SHA for 9b5c689
File tree 2 files changed +12
-1
lines changed
2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,12 @@ Use the `g` command to see a list of generators.
41
41
$ iron g
42
42
```
43
43
44
+ ** Run Iron in verbose mode (extended logging)**
45
+
46
+ ```
47
+ $ IRON_DEBUG=true iron
48
+ ```
49
+
44
50
## Directory Structure
45
51
The application will have the following directory structure:
46
52
@@ -145,7 +151,7 @@ $ cd app/
145
151
$ meteor mongo
146
152
```
147
153
148
- ** NOTE**
154
+ ** NOTE**
149
155
150
156
* Ideally running ` iron mongo ` in the project directory should work but it doesn't for some reason and is being tracked in issue #136 *
151
157
Original file line number Diff line number Diff line change @@ -19,6 +19,11 @@ module.exports = {
19
19
console . log ( cli . red . bold . apply ( this , arguments ) ) ;
20
20
} ,
21
21
22
+ logDebug : function ( ) {
23
+ if ( process . env . IRON_DEBUG )
24
+ console . log ( cli . magenta . apply ( this , arguments ) ) ;
25
+ } ,
26
+
22
27
logUsage : function ( ) {
23
28
var header = cli . blackBright ;
24
29
You can’t perform that action at this time.
0 commit comments