diff options
author | rbuj <[email protected]> | 2021-01-01 10:40:23 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-01-18 22:40:23 +0100 |
commit | 195647a8bb37a759585411f108760e0f44353242 (patch) | |
tree | 76b03b4e47a7274ebfeb62542144b11e8a494fa1 /sendto | |
parent | d0d579dbe5c51ee89354ac44c80cb0f53f891f2d (diff) | |
download | caja-extensions-195647a8bb37a759585411f108760e0f44353242.tar.bz2 caja-extensions-195647a8bb37a759585411f108760e0f44353242.tar.xz |
Print status messages
Diffstat (limited to 'sendto')
-rw-r--r-- | sendto/caja-sendto-module.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sendto/caja-sendto-module.c b/sendto/caja-sendto-module.c index cfb4737..5c8c13b 100644 --- a/sendto/caja-sendto-module.c +++ b/sendto/caja-sendto-module.c @@ -31,6 +31,7 @@ void caja_module_initialize (GTypeModule*module) { + g_print ("Initializing caja-sendto extension\n"); caja_nste_register_type (module); bindtextdomain (GETTEXT_PACKAGE, MATELOCALEDIR); @@ -41,6 +42,7 @@ caja_module_initialize (GTypeModule*module) void caja_module_shutdown (void) { + g_print ("Shutting down caja-sendto extension\n"); } |