From 3279047074056e99481ed222ea62b46d8c8dcd70 Mon Sep 17 00:00:00 2001 From: Brian Tiger Chow Date: Tue, 20 Jan 2015 06:20:50 -0800 Subject: [PATCH] log(main) show IPFS_DIR/IPFS_PATH at start up a one-time print out --- cmd/ipfs/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/ipfs/main.go b/cmd/ipfs/main.go index c2359d814..69c0f9393 100644 --- a/cmd/ipfs/main.go +++ b/cmd/ipfs/main.go @@ -268,6 +268,7 @@ func callPreCommandHooks(ctx context.Context, details cmdDetails, req cmds.Reque } func callCommand(ctx context.Context, req cmds.Request, root *cmds.Command, cmd *cmds.Command) (cmds.Response, error) { + log.Info(config.EnvDir, req.Context().ConfigRoot) var res cmds.Response details, err := commandDetails(req.Path(), root)