Repository: incubator-hawq Updated Branches: refs/heads/2.2.0.0-incubating c2ba42026 -> fe6c0e9c8
HAWQ-1418. Print executing command for hawq register (close #1199) Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/bbdcf95a Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/bbdcf95a Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/bbdcf95a Branch: refs/heads/2.2.0.0-incubating Commit: bbdcf95a02a93c12ef1e786437cdad77c515ffa7 Parents: c2ba420 Author: Chunling Wang <wangchunlin...@126.com> Authored: Tue Mar 28 17:08:35 2017 +0800 Committer: Lili Ma <ictmal...@gmail.com> Committed: Tue Mar 28 17:20:29 2017 +0800 ---------------------------------------------------------------------- tools/bin/hawqregister | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/bbdcf95a/tools/bin/hawqregister ---------------------------------------------------------------------- diff --git a/tools/bin/hawqregister b/tools/bin/hawqregister index 39d0c23..e5c3f6a 100755 --- a/tools/bin/hawqregister +++ b/tools/bin/hawqregister @@ -34,6 +34,12 @@ except ImportError, e: sys.stderr.write('Cannot import module, please check that you have source greenplum_path.sh\n') sys.exit(2) +# print executing command +cmd = "Executing Command: "; +for arg in sys.argv: + cmd += arg + " " +logger.info(cmd); + # setup logging logger = get_default_logger() EXECNAME = os.path.split(__file__)[-1]