Howto: Outlook 2016 for Mac - Debugging/View Console Logs in Outlook Add-in












2















We develop an Outlook app (now called add-in) using html5/js originally for OWA but now it is targeted to all Office Supported Platforms.
And indeed, it seems to work on all platforms (ios, safari on mac, windows browsers and outlook) except for Outlook 2016 for Mac.
When running inside Outlook 2016 for Mac it behaves very strangely. Not loading half the times, and when loading, it does not work properly.



We find it very hard to find the problem. We did not find a way to debug our scripts or even see our console logs.



Do you have any flags/procedure/tools that we can use, so that we can see what's going on with our add-in in this platform?










share|improve this question





























    2















    We develop an Outlook app (now called add-in) using html5/js originally for OWA but now it is targeted to all Office Supported Platforms.
    And indeed, it seems to work on all platforms (ios, safari on mac, windows browsers and outlook) except for Outlook 2016 for Mac.
    When running inside Outlook 2016 for Mac it behaves very strangely. Not loading half the times, and when loading, it does not work properly.



    We find it very hard to find the problem. We did not find a way to debug our scripts or even see our console logs.



    Do you have any flags/procedure/tools that we can use, so that we can see what's going on with our add-in in this platform?










    share|improve this question



























      2












      2








      2








      We develop an Outlook app (now called add-in) using html5/js originally for OWA but now it is targeted to all Office Supported Platforms.
      And indeed, it seems to work on all platforms (ios, safari on mac, windows browsers and outlook) except for Outlook 2016 for Mac.
      When running inside Outlook 2016 for Mac it behaves very strangely. Not loading half the times, and when loading, it does not work properly.



      We find it very hard to find the problem. We did not find a way to debug our scripts or even see our console logs.



      Do you have any flags/procedure/tools that we can use, so that we can see what's going on with our add-in in this platform?










      share|improve this question
















      We develop an Outlook app (now called add-in) using html5/js originally for OWA but now it is targeted to all Office Supported Platforms.
      And indeed, it seems to work on all platforms (ios, safari on mac, windows browsers and outlook) except for Outlook 2016 for Mac.
      When running inside Outlook 2016 for Mac it behaves very strangely. Not loading half the times, and when loading, it does not work properly.



      We find it very hard to find the problem. We did not find a way to debug our scripts or even see our console logs.



      Do you have any flags/procedure/tools that we can use, so that we can see what's going on with our add-in in this platform?







      outlook outlook-addin office365-apps officedev office-2016






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Dec 15 '15 at 20:20







      Danikenan

















      asked Dec 15 '15 at 19:44









      DanikenanDanikenan

      11716




      11716
























          3 Answers
          3






          active

          oldest

          votes


















          0














          Take a look at this article:



          https://msdn.microsoft.com/EN-US/library/office/dn818897.aspx



          Also review all API objects, methods and properties you are accessing against the API documentation; note the Support Details section at the bottom of the member's page to confirm its availability for Outlook for Mac.



          To debug it against Outlook for Mac, you may need to use the Yeoman tool:



          http://dev.office.com/blogs/creating-office-add-ins-with-any-editor-introducing-yo-office






          share|improve this answer































            0














            You can use Vorlon.js to be able to debug your add'in.



            You should definitively take a look at VorlonJS here :



            http://vorlonjs.io/



            In a nutshell, VorlonJS is an open source, extensible, platform-agnostic tool for remotely debugging and testing your JavaScript. Powered by node.js and socket.io.



            You launch your add'in in "whatever you want" and then you can debug it in VorlonJS






            share|improve this answer

































              0















              1. open your add-in on outlook.

              2. go to and open one of:

                  32-Bit – C:WindowsSystem32F12F12Chooser.exe

                  64-Bit – C:WindowsSysWOW64F12F12Chooser.exe


              and there is your debugger.



              visit here for more info.






              share|improve this answer

























                Your Answer






                StackExchange.ifUsing("editor", function () {
                StackExchange.using("externalEditor", function () {
                StackExchange.using("snippets", function () {
                StackExchange.snippets.init();
                });
                });
                }, "code-snippets");

                StackExchange.ready(function() {
                var channelOptions = {
                tags: "".split(" "),
                id: "1"
                };
                initTagRenderer("".split(" "), "".split(" "), channelOptions);

                StackExchange.using("externalEditor", function() {
                // Have to fire editor after snippets, if snippets enabled
                if (StackExchange.settings.snippets.snippetsEnabled) {
                StackExchange.using("snippets", function() {
                createEditor();
                });
                }
                else {
                createEditor();
                }
                });

                function createEditor() {
                StackExchange.prepareEditor({
                heartbeatType: 'answer',
                autoActivateHeartbeat: false,
                convertImagesToLinks: true,
                noModals: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: 10,
                bindNavPrevention: true,
                postfix: "",
                imageUploader: {
                brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                allowUrls: true
                },
                onDemand: true,
                discardSelector: ".discard-answer"
                ,immediatelyShowMarkdownHelp:true
                });


                }
                });














                draft saved

                draft discarded


















                StackExchange.ready(
                function () {
                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f34298022%2fhowto-outlook-2016-for-mac-debugging-view-console-logs-in-outlook-add-in%23new-answer', 'question_page');
                }
                );

                Post as a guest















                Required, but never shown

























                3 Answers
                3






                active

                oldest

                votes








                3 Answers
                3






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                0














                Take a look at this article:



                https://msdn.microsoft.com/EN-US/library/office/dn818897.aspx



                Also review all API objects, methods and properties you are accessing against the API documentation; note the Support Details section at the bottom of the member's page to confirm its availability for Outlook for Mac.



                To debug it against Outlook for Mac, you may need to use the Yeoman tool:



                http://dev.office.com/blogs/creating-office-add-ins-with-any-editor-introducing-yo-office






                share|improve this answer




























                  0














                  Take a look at this article:



                  https://msdn.microsoft.com/EN-US/library/office/dn818897.aspx



                  Also review all API objects, methods and properties you are accessing against the API documentation; note the Support Details section at the bottom of the member's page to confirm its availability for Outlook for Mac.



                  To debug it against Outlook for Mac, you may need to use the Yeoman tool:



                  http://dev.office.com/blogs/creating-office-add-ins-with-any-editor-introducing-yo-office






                  share|improve this answer


























                    0












                    0








                    0







                    Take a look at this article:



                    https://msdn.microsoft.com/EN-US/library/office/dn818897.aspx



                    Also review all API objects, methods and properties you are accessing against the API documentation; note the Support Details section at the bottom of the member's page to confirm its availability for Outlook for Mac.



                    To debug it against Outlook for Mac, you may need to use the Yeoman tool:



                    http://dev.office.com/blogs/creating-office-add-ins-with-any-editor-introducing-yo-office






                    share|improve this answer













                    Take a look at this article:



                    https://msdn.microsoft.com/EN-US/library/office/dn818897.aspx



                    Also review all API objects, methods and properties you are accessing against the API documentation; note the Support Details section at the bottom of the member's page to confirm its availability for Outlook for Mac.



                    To debug it against Outlook for Mac, you may need to use the Yeoman tool:



                    http://dev.office.com/blogs/creating-office-add-ins-with-any-editor-introducing-yo-office







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Dec 15 '15 at 21:16









                    Eric LegaultEric Legault

                    4,44921321




                    4,44921321

























                        0














                        You can use Vorlon.js to be able to debug your add'in.



                        You should definitively take a look at VorlonJS here :



                        http://vorlonjs.io/



                        In a nutshell, VorlonJS is an open source, extensible, platform-agnostic tool for remotely debugging and testing your JavaScript. Powered by node.js and socket.io.



                        You launch your add'in in "whatever you want" and then you can debug it in VorlonJS






                        share|improve this answer






























                          0














                          You can use Vorlon.js to be able to debug your add'in.



                          You should definitively take a look at VorlonJS here :



                          http://vorlonjs.io/



                          In a nutshell, VorlonJS is an open source, extensible, platform-agnostic tool for remotely debugging and testing your JavaScript. Powered by node.js and socket.io.



                          You launch your add'in in "whatever you want" and then you can debug it in VorlonJS






                          share|improve this answer




























                            0












                            0








                            0







                            You can use Vorlon.js to be able to debug your add'in.



                            You should definitively take a look at VorlonJS here :



                            http://vorlonjs.io/



                            In a nutshell, VorlonJS is an open source, extensible, platform-agnostic tool for remotely debugging and testing your JavaScript. Powered by node.js and socket.io.



                            You launch your add'in in "whatever you want" and then you can debug it in VorlonJS






                            share|improve this answer















                            You can use Vorlon.js to be able to debug your add'in.



                            You should definitively take a look at VorlonJS here :



                            http://vorlonjs.io/



                            In a nutshell, VorlonJS is an open source, extensible, platform-agnostic tool for remotely debugging and testing your JavaScript. Powered by node.js and socket.io.



                            You launch your add'in in "whatever you want" and then you can debug it in VorlonJS







                            share|improve this answer














                            share|improve this answer



                            share|improve this answer








                            edited Dec 24 '15 at 23:44









                            Josh Crozier

                            154k35273223




                            154k35273223










                            answered Dec 18 '15 at 12:07









                            Sébastien PertusSébastien Pertus

                            38019




                            38019























                                0















                                1. open your add-in on outlook.

                                2. go to and open one of:

                                    32-Bit – C:WindowsSystem32F12F12Chooser.exe

                                    64-Bit – C:WindowsSysWOW64F12F12Chooser.exe


                                and there is your debugger.



                                visit here for more info.






                                share|improve this answer






























                                  0















                                  1. open your add-in on outlook.

                                  2. go to and open one of:

                                      32-Bit – C:WindowsSystem32F12F12Chooser.exe

                                      64-Bit – C:WindowsSysWOW64F12F12Chooser.exe


                                  and there is your debugger.



                                  visit here for more info.






                                  share|improve this answer




























                                    0












                                    0








                                    0








                                    1. open your add-in on outlook.

                                    2. go to and open one of:

                                        32-Bit – C:WindowsSystem32F12F12Chooser.exe

                                        64-Bit – C:WindowsSysWOW64F12F12Chooser.exe


                                    and there is your debugger.



                                    visit here for more info.






                                    share|improve this answer
















                                    1. open your add-in on outlook.

                                    2. go to and open one of:

                                        32-Bit – C:WindowsSystem32F12F12Chooser.exe

                                        64-Bit – C:WindowsSysWOW64F12F12Chooser.exe


                                    and there is your debugger.



                                    visit here for more info.







                                    share|improve this answer














                                    share|improve this answer



                                    share|improve this answer








                                    edited Nov 13 '18 at 13:36

























                                    answered Nov 4 '18 at 9:40









                                    Alone BashanAlone Bashan

                                    165




                                    165






























                                        draft saved

                                        draft discarded




















































                                        Thanks for contributing an answer to Stack Overflow!


                                        • Please be sure to answer the question. Provide details and share your research!

                                        But avoid



                                        • Asking for help, clarification, or responding to other answers.

                                        • Making statements based on opinion; back them up with references or personal experience.


                                        To learn more, see our tips on writing great answers.




                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function () {
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f34298022%2fhowto-outlook-2016-for-mac-debugging-view-console-logs-in-outlook-add-in%23new-answer', 'question_page');
                                        }
                                        );

                                        Post as a guest















                                        Required, but never shown





















































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown

































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown







                                        Popular posts from this blog

                                        Xamarin.iOS Cant Deploy on Iphone

                                        Glorious Revolution

                                        Dulmage-Mendelsohn matrix decomposition in Python